ThinkPHP数据库中文问题
1.修改/thinkphp/library/think/db/builder/Mysql.php 154行处
找到 if ($strict && !preg_match('/^[\w\.\*]+$/', $key)) {
修改为 if ($strict && !preg_match('/^[\w\.\*\x{4e00}-\x{9fa5}]+$/u', $key)) {
2.修改/thinkphp/library/think/db/Builder.php 815行处
找到 if (preg_match('/^[\w\.]+$/', $key)) {
修改为 if (preg_match('/^[\w\.\*\x{4e00}-\x{9fa5}]+$/u', $key)) {