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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…