I am confused, I have a PHP class with a constructor:
class Test {
public function __construct() {
return "some text";
}
}
Then I instanciate an object:
$t = new Test();
I would expect the contents of $t to be "some text":
print_r($t);
But it is:
Test Object
(
)
How do I get the returned value "some text"
from the constructor?