Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
563 views
in Technique[技术] by (71.8m points)

class - PHP Get Returned Value From Constructor

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You cannot return anything from a constructor. The new keyword will always result in a new object, it does not matter what you return from the constructor.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...