美文网首页
thinkphp5.1 和6.0 无法更新数据库中文字段数据 2

thinkphp5.1 和6.0 无法更新数据库中文字段数据 2

作者: 阿然学编程 | 来源:发表于2023-03-12 09:22 被阅读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

    相关文章

      网友评论

          本文标题:thinkphp5.1 和6.0 无法更新数据库中文字段数据 2

          本文链接:https://www.haomeiwen.com/subject/rsmfrdtx.html