PHP ‘Array and string offset access syntax with curly braces is deprecated’ 错误的原因和解决办法...
其实从错误信息里就看出错误原因了:Array and string offset access syntax with curly braces is deprecated,这是 PHP 7.4 版本的更新,从 7.4 后,只能使用 $value[0] 的方式来获取字符串偏移,$value{0} 已经被弃用。
————————————————
原文链接:https://blog.csdn.net/chenzhao635/article/details/128078967