緣起
本地開發(fā)時代碼運行正常, 放到測試服務(wù)器上報錯:
Parse error: syntax error, unexpected '[' in /path/xx.php on line 2
解決
是"聲明數(shù)組"的語法錯誤.
PHP 一般使用 $my_array = array('a' => 1)
來聲明數(shù)組, 在 PHP 5.4 以后才支持 $my_array = ['a' => 1]
的寫法.
手冊上的說明:
As of PHP 5.4 you can also use the short array syntax, which replaces array() with [].
文章歷史
- 2017/01/02 (第一次發(fā)布)
如果你覺得我的文章對你有用, 請打個"喜歡", 或者給些改進(jìn)的建議 _