时间:2021-07-01 10:21:17 帮助过:6人阅读
'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()