| Server IP : 156.238.232.47 / Your IP : 216.73.216.150 Web Server : nginx/1.25.3 System : Linux C202504152095410 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : www ( 1000) PHP Version : 8.3.25 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/data/wwwroot/2026_06_09_01/core/library/think/exception/ |
Upload File : |
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://zjzit.cn>
// +----------------------------------------------------------------------
namespace think\exception;
use think\Config;
/**
* PDO异常处理类
* 重新封装了系统的\PDOException类
*/
class PDOException extends DbException
{
/**
* PDOException constructor.
* @param \PDOException $exception
* @param array $config
* @param string $sql
* @param int $code
*/
public function __construct(\PDOException $exception, array $config, $sql, $code = 10501)
{
$error = $exception->errorInfo;
$code0 = $exception->getCode();
$code1 = isset($error[1]) ? $error[1] : 0;
$code2 = isset($error[2]) ? $error[2] : '';
$this->setData('PDO Error Info', [
'SQLSTATE' => $code0,
'Driver Error Code' => $code1,
'Driver Error Message' => $code2,
]);
/*提高错误提示的友好性 by 小虎哥*/
$errcode = "{$code0}:{$code1}";
if (stristr($code2, "Incorrect string value:")) {
if (stristr($code2, "for column '")) {
$errcode = "HY000:-{$code1}";
}
}
$mysqlcode = Config::get('error_code.mysql');
$eyou_message = "";
if (!empty($mysqlcode[$errcode])) {
$code = 'eyou';
$eyou_message = $mysqlcode[$errcode];
}
/*--end*/
$message = $exception->getMessage();
try {
$message = iconv('GB2312', 'UTF-8', $message); // 转化编码 by 小虎哥
} catch (\Exception $e) {
if (function_exists('mb_convert_encoding')) {
$message = mb_convert_encoding($message, "UTF-8", "GBK");
}
}
// 新增/更新时,字段超过长度报错
if (stristr($message, 'Data too long for column ')) {
$table = '';
if (preg_match('/^INSERT(\s+)INTO(\s+)`([\w\-]+)`(\s+)(.*)$/i', $sql)) {
$table = preg_replace('/^INSERT(\s+)INTO(\s+)`([\w\-]+)`(\s+)(.*)$/i', '${3}', $sql);
} else if (preg_match('/^UPDATE(\s+)`([\w\-]+)`(\s+)SET(\s+)`(.*)$/i', $sql)) {
$table = preg_replace('/^UPDATE(\s+)`([\w\-]+)`(\s+)SET(\s+)`(.*)$/i', '${2}', $sql);
}
if (!empty($table) && !stristr($table, '`')) {
$data = \think\Db::query("show create table " . $table);
$sqlInfo = empty($data[0]['Create Table']) ? '' : $data[0]['Create Table'];
if (!empty($sqlInfo)) {
$fieldName = preg_replace('/^(.*)Data too long for column (\'|")([^\'\"]+)(\'|") at row (.*)$/i', '${3}', $message);
$fieldTitle = preg_replace('/^([\s\S]+)`'.$fieldName.'`(\s+)(.*)(\s+)COMMENT(\s+)(\'|")(.*)(\'|")\,([\s\S]+)$/i', '${7}', $sqlInfo);
$fieldLength = preg_replace('/^([\s\S]+)`'.$fieldName.'`(\s+)([a-z]+)\((\d+)([\s\S]+)$/i', '${4}', $sqlInfo);
$eyou_message = $fieldTitle.$eyou_message.$fieldLength.'字符';
}
}
}
$message = $eyou_message."#--wrap--#".$message;
parent::__construct($message, $config, $sql, $code);
}
}