浏览文章

文章信息

PHP7.4兼容 Array and string offset access syntax with curly braces is deprecated 13040

PHP7.4不再支持使用大括号访问数组以及字符串的偏移_PHP代码
php7.4不支持数组{}写法,统一为数组[]

$string{$i - 1}

改为

$string[$i - 1]


原创