PHP5.4开始php精简Array数组语法[]
程序员文章站
2022-04-23 20:11:01
...
PHP 5.4开始php精简Array数组语法
PHP 5.4为您奉上精简的array数组语法:
$fruits = array('apples', 'oranges', 'bananas'); // "old" way // 学Javascript的数组了 $fruits = ['apples', 'oranges', 'bananas']; // 关联数组 $array = [ 'foo' => 'bar', 'bar' => 'foo' ];
当然,旧语法依旧有效,我们多了一种选择。
下一篇: PHP快速读取大文件方法