将变量声明为PHP类

时间:2010-06-12 03:16:02

标签: php class

我有一个名为$ theclass的变量,它是一个字符串“Home_class”。如何从该字符串中定义一个类?我需要这样做的原因是变量会改变,我希望能够声明变量等于的类。

1 个答案:

答案 0 :(得分:4)

使用new关键字。

$theclass = 'My_class';
$x = new $theclass(); // $x is now an instance of My_class