你能在 PHP 的一个类中初始化一个静态对象数组吗?就像你可以做的那样
class myclass {
public static $blah = array("test1", "test2", "test3");
}
但是当我这样做时
class myclass {
public static $blah2 = array(
&new myotherclass(),
&new myotherclass(),
&new myotherclass()
);
}
其中 myotherclass 定义在 myclass 的正上方。然而,这会引发错误;有没有办法实现它?