gpt4 book ai didi

php - 这是什么意思 : $foo = new $foo();?

转载 作者:可可西里 更新时间:2023-11-01 13:13:53 27 4
gpt4 key购买 nike

我以前从未见过这样的事情。

$dbTable = new $dbTable();

我们正在 $dbTable 中存储一个对象实例?

我们是否将字符串转换为对象?

这里是上下文:

protected $_dbTable;

public function setDbTable($dbTable)
{
if (is_string($dbTable)) {
$dbTable = new $dbTable();
}
if (!$dbTable instanceof Zend_Db_Table_Abstract) {
throw new Exception('Invalid table data gateway provided');
}
$this->_dbTable = $dbTable;
return $this;
}

来自这里的 php 手册: http://www.php.net/manual/en/language.oop5.basic.php

我们可以阅读:

If a string containing the name of a class is used with new, a new instance of that class will be created. If the class is in a namespace, its fully qualified name must be used when doing this.

但这似乎是字符串和那些“事物”之间的连接操作:() - 不使用点。所以我仍然不确定这里发生了什么。

最佳答案

不,行:

if (is_string($dbTable)) {

意味着一个新的$dbTable只有在输入是一个字符串时才会被实例化。所以这里发生的事情是 $dbTable 包含在该代码执行时创建的类的名称:

$dbTable = new $dbTable();

然后代码检查以确保创建了正确类型的对象(Zend_Db_Table_Abstract)。正如 Stefan 指出的那样,可以直接传递类的实例,在这种情况下甚至不会执行您提到的代码。

关于php - 这是什么意思 : $foo = new $foo();?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5927426/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com