ThinkPHP5在PHP7.4下报错Array and string offset access syntax with curly braces is deprecated

ThinkPHP5 在 PHP7.4;下回出现以下 Array and string offset access syntax with curly braces is deprecated;错误问题。出现这个原因是,PHP7.4不再支持使用大括号访问数组以及字符串的偏移.如果在PHP7.4以后的代码

ThinkPHP5 在 PHP7.4 下回出现以下 Array and string offset access syntax with curly braces is deprecated 错误问题。

出现这个原因是,PHP7.4不再支持使用大括号访问数组以及字符串的偏移.如果在PHP7.4以后的代码中,还是使用大括号来获取的话,那么就会抛出以下错误信息:Array and string offset access syntax with curly braces is deprecated,出现这个问题有两种解决方法。

第一种:打开 Query.php文件(路径:项目\thinkphp\library\think\db\Query.php)

位于:399行

将原来的

$seq = (ord($value[0]) % $rule{'num'}) + 1;

修改为

$seq = (ord($value[0]) % $rule['num']) + 1;

即可!

第二种:不想改框架源码的话,那就切换其他PHP版本,改成7.4以下的版本,如7.3即可!

本文标题为:ThinkPHP5在PHP7.4下报错Array and string offset access syntax with curly braces is deprecated

基础教程推荐