当前位置:Gxlcms > PHP教程 > PHP5.4开始php精简Array数组语法[]

PHP5.4开始php精简Array数组语法[]

时间:2021-07-01 10:21:17 帮助过:12人阅读

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'
];

当然,旧语法依旧有效,我们多了一种选择。

人气教程排行