美文网首页
syntax error, unexpected '[' --

syntax error, unexpected '[' --

作者: patiencing | 来源:发表于2017-04-05 03:43 被阅读0次

    缘起

    本地开发时代码运行正常, 放到测试服务器上报错:

    Parse error: syntax error, unexpected '[' in /path/xx.php on line 2


    解决

    是"声明数组"的语法错误.
    PHP 一般使用 $my_array = array('a' => 1) 来声明数组, 在 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 (第一次发布)

    如果你觉得我的文章对你有用, 请打个"喜欢", 或者给些改进的建议 _

    相关文章

      网友评论

          本文标题:syntax error, unexpected '[' --

          本文链接:https://www.haomeiwen.com/subject/qgctattx.html