我不明白爲什麼這不起作用:陣列/類常量表達式包含無效操作
class TestOne
{
public static $TEST = array(
"test" => array("name" => TestTwo::$TEST2[ "test" ]) // error line
)}
class TestTwo
{
public static $TEST2 = array(
"test" => "result"
);
}
這給我的錯誤:
Constant expression contains invalid operations
我想TestOne::$TEST[ "test" ][ "name" ]
含有「結果「
PHP版本?在這裏使用。 – JustOnUnderMillions
我正在使用7.1.1 –