PHP:变量名作为类实例
作者:互联网
我在调用类中的静态函数时遇到使用变量作为类名的问题.我的代码如下:
class test {
static function getInstance() {
return new test();
}
}
$className = "test";
$test = $className::getInstance();
我必须将类名定义为变量,因为类的名称来自数据库,所以我永远不知道要创建实例的类.
注意:目前我收到以下错误:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM
谢谢
解决方法:
$test = call_user_func(array($className, 'getInstance'));
标签:php,instantiation,static-methods,php-5-2 来源: https://codeday.me/bug/20190726/1546980.html