thinkphp5.1 和6.0 无法更新数据库中文字段数据 2
2023-03-12 本文已影响0人
阿然学编程
- TP51解决方案:
if ($strict && !preg_match('/^[\w\.\*\x7f-\xff]+$/', $key)) {
throw new Exception('not support data:' . $key);
}
-
具体位置:
image.png
- TP6解决方案:
if ($strict && !preg_match('/^[\w\.\*\x00-\xff]+$/', $key)) {
throw new \think\Exception('not support data:' . $key);
}
-
具体位置:
image.png