TP5连接数据库出现 Array and string offset access syntax with curly braces is deprecated

时间:2024-04-05 11:55:05

前言:很多小伙伴使用tp5时,连接数据库出现了Array and string offset access syntax with curly braces is deprecated(不赞成使用带花括号的数组和字符串偏移访问语法),这是因为你使用了PHP7+的版本,不在支持使用大括号访问数组和字符串的偏移


1.这是出错时的图片(这提示是开启了调试模式)

TP5连接数据库出现 Array and string offset access syntax with curly braces is deprecated



2.这时候我们打开 tp5\thinkphp\library\think\db\Query.php 文件,查找 seq=(ord(seq = (ord(value{0}) % $rule[‘num’]) + 1; 将 $value{0}) 花括号改成大括号 $value[0]

TP5连接数据库出现 Array and string offset access syntax with curly braces is deprecated



3.改好后保存,重新刷新下页面,OK 成功啦

TP5连接数据库出现 Array and string offset access syntax with curly braces is deprecated



结尾:希望能帮助大家!