💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 1、PDO支持三种错误模式 ``` 静默模式(Silent):错误发生后,不会主动报错,是默认的模式; 警告模式(Warning):错误发生后,通过PHP标准来报告错误; 异常模式(Exception):错误发生后,抛出异常,需要捕捉和处理; 提示:可以通过 PDO::setAttribute() 更改错误模式。 ``` ## 2、静默模式(Slient) 在静默模式下,当有错误发生时,不会显示在页面上; ``` 此时,可以通过PDO的PDO::errorCode()和PDO::errorInfo()两个方法,来获取错误信息。 ``` ![](https://img.kancloud.cn/45/14/45148c5768608046a2cdf9da201c8af0_823x549.png) ## 3、警告模式(Warning) ``` 因为默认报错模式是静默模式(silent),如果想报警告错误,必须使用setAttribute()方法提前设置。 ``` ![](https://img.kancloud.cn/48/60/486099539e3aa0e96ca0f07905127518_831x497.png) ## 4、异常模式(Exception) 因为默认报错模式是静默模式(silent),如果想报异常错误,必须使用setAttribute()方法提前设置。 ![](https://img.kancloud.cn/ba/6d/ba6dda8b1dcad88637d40787af7d0d84_649x241.png) ![](https://img.kancloud.cn/6b/de/6bdeecf781cdc1431f85080cad57e618_576x479.png) ![](https://img.kancloud.cn/ae/b2/aeb2966122e787229f04614558a68386_789x511.png) ![](https://img.kancloud.cn/44/48/44486db92b2867dbb0e8ad1b3e69abb3_747x96.png)