PHP5.6是CLASS常量中允许的数组

时间:2016-08-11 15:22:18

标签: php arrays class constants php-5.6

因此我们可以在PHP5.6中定义数组常量。但是,在类

中定义数组常量时出现以下错误
Arrays are not allowed in class constants

那么数组常量是允许的,但不是在类内部吗?

1 个答案:

答案 0 :(得分:8)

从PHP 5.6开始,类常量中允许使用数组。

有关正在运行的php代码,请参阅link

<?php

class Foo 
{
    const BAR = [1,2,3];
}

print_r(Foo::BAR);