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

前言:很多小伙伴使用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_第1张图片



2.这时候我们打开 tp5\thinkphp\library\think\db\Query.php 文件,查找 s e q = ( o r d ( 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_第2张图片



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

TP5连接数据库出现 Array and string offset access syntax with curly braces is deprecated_第3张图片



结尾:希望能帮助大家!

你可能感兴趣的:(技巧,php)