PHP7 常量数组

PHP7 通过 define() 定义常量数组


Array 类型的常量现在可以通过 define() 来定义。在 PHP5.6 中仅能通过 const 定义。

define('ANIMALS', [
    'dog',
    'cat',
    'bird'
]);

echo ANIMALS[1];

以上程序执行输出结果为:

cat

查看笔记

扫码一下
查看教程更方便