Hi guys,
I've made a class with a lot of functions, and for the 99% of the time i need the __construct functi.
How can i call the class without the __construct ?
class Test
{
public function __construct()
{
echo "bla";
}
}
$test = new Test();
What I want is when I call the new $test->blabla($test); the construct should not be invoked.