标签: php arrays class constants php-5.6
因此我们可以在PHP5.6中定义数组常量。但是,在类
Arrays are not allowed in class constants
那么数组常量是允许的,但不是在类内部吗?
答案 0 :(得分:8)
从PHP 5.6开始,类常量中允许使用数组。
有关正在运行的php代码,请参阅link。
<?php class Foo { const BAR = [1,2,3]; } print_r(Foo::BAR);