标签: php class
我有一个名为$ theclass的变量,它是一个字符串“Home_class”。如何从该字符串中定义一个类?我需要这样做的原因是变量会改变,我希望能够声明变量等于的类。
答案 0 :(得分:4)
使用new关键字。
new
$theclass = 'My_class'; $x = new $theclass(); // $x is now an instance of My_class