现在可以定义数组常量。在php5.6中,只能使用常量关键字。
<?php //使用定义函数定义数组 define('animals', [ 'dog', 'cat', 'bird' ]); print(animals[1]); ?>
它产生以下浏览器输出–
cat