PHP Get Returned Value From Constructor(PHP 从构造函数获取返回值)
本文介绍了PHP 从构造函数获取返回值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我很困惑,我有一个带有构造函数的 PHP 类:
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();
我希望 $t 的内容是一些文本":
I would expect the contents of $t to be "some text":
print_r($t);
但它是:
Test Object
(
)
如何从构造函数中获取返回值"some text"
?
How do I get the returned value "some text"
from the constructor?
推荐答案
你不能从构造函数return
任何东西.new
关键字总是会产生一个新的对象,不管你从构造函数中return
什么.
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.
这篇关于PHP 从构造函数获取返回值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:PHP 从构造函数获取返回值


基础教程推荐
猜你喜欢
- php中的foreach复选框POST 2021-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- php中的PDF导出 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01