Array 类型的常量现在可以通过 define() 来定义。在 PHP5.6 中仅能通过 const 定义。
define('ANIMALS', [ 'dog', 'cat', 'bird' ]); echo ANIMALS[1];
以上程序执行输出结果为:
cat