tp5在php7下出现Array and string offset access syntax with curly braces is deprecated
当tp5在php7下出现Array and string offset access syntax with curly braces is deprecated,
我们就获取不到查询的值,这是因为php7之后不再支持使用大括号访问数组以及字符串的偏移
所以需要
修改一处代码
文件所在:thinkphp\library\think\db\Query.php
// 按照字段的首字母的值分表
$seq = (ord($value{0}) % $rule['num']) + 1;
$value{0} 改为$value[0];
本文由 我爱PHP169 作者:admin 发表,其版权均为 我爱PHP169 所有,文章内容系作者个人观点,不代表 我爱PHP169 对观点赞同或支持。如需转载,请注明文章来源。