请问一直报错符号错误该怎么解决?
程序员文章站
2022-05-14 10:13:54
...
private $_specialWhiteList = [
'table' => 'table|tbody|thead|tfoot|tr|td|th'
];
运行时老是报错syntax error, unexpected '['
该怎么解决啊?
回复内容:
private $_specialWhiteList = [
'table' => 'table|tbody|thead|tfoot|tr|td|th'
];
运行时老是报错syntax error, unexpected '['
该怎么解决啊?
php版本太低,导致语法不兼容。
解决方法一、升级PHP到5.4以上
解决方法二、把[]
换成 array()
下一篇: 5种Python单例模式的实现方式