前几天WordPress提示PHP7.3.X不建议使用,所以顺手给PHP升了级,然后发现打开站点提示:
打开debug模式后发现提示:Array and string offset access syntax with curly braces is no longer support;
PHP7.4不让用花括号来访问数组或者字符串的偏移.需要把{}修改成[]
所以修改
vim src/wp-content/themes/dux/functions-theme.php
//分别找到658、676
//原
$c = ord($str{$i});
//修改为
$c = ord($str[$i]);