无涯教程-PHP - 常量数组

现在可以使用 define()函数定义数组常量。在PHP 5.6中,只能使用 const 关键字定义它们。

php
   //define a array using define function
   define(animals, [
      dog,
      cat,
      bird
   ]);
   print(animals[1]);
?>

它产生以下浏览器输出-

cat

PHP - 常量数组 - 无涯教程网无涯教程网提供现在可以使用 define()函数定义数组常量。在PHP 5.6中,只能使用 const 关键字定义它...https://www.learnfk.com/php7+/php7-constant-arrays.html

你可能感兴趣的:(无涯教程,php7+)