在PHP文档中,有一个使用 public const 的示例 http://php.net/manual/en/language.oop5.visibility.php#example-196
class MyClass
{
public const MY_PUBLIC = 'public';
}
但它给了我这个错误:"解析错误:语法错误,意外' const' (T_CONST),期望第5行&#34的/Applications/MAMP/htdocs/php-testing/const.php中的变量(T_VARIABLE);
这个例子没有" public"。喜欢这个
class MyClass
{
const MY_PUBLIC = 'public';
}
我做错了什么?