Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚发现了 PHP 中数组的短标签。
在我的代码中我使用:
$arr = array(); // do something
现在我可以使用:
$arr = []
那么在 PHP 中使用 [] 而不是 array() 有什么好处呢?
[]和之间没有区别array(),这两个声明本身都被称为数组声明。这样做的好处是您在键入 (5) 时可以节省一些时间array,而您可以像[](2) 一样进行操作。
[]
array()
array