How can I tell PHP to dump exceptions as raw text instead of HTML?(如何告诉 PHP 将异常转储为原始文本而不是 HTML?)
问题描述
当我在 PHP 中开发我的 REST API 时,我正在使用 application/json
输出,所以当我在浏览器中测试时出现错误时,它们看起来像这样:
When I'm developing my REST API in PHP I'm working with application/json
output, so when I get errors while testing in the browser they look like this:
<b>Fatal error</b>: Uncaught exception 'Exception' with message 'PDO caught an error:
array(3) {
[0]=>
string(5) "42000"
[1]=>
int(1065)
[2]=>
string(15) "Query was empty"
}
当我得到大量的堆栈跟踪和其他东西时,情况会变得更糟.那么有没有我可以设置的标志告诉 PHP 我希望我的错误不转义并以原始文本形式显示?
And it gets worse when I get large stack traces and stuff. So is there a flag I can set telling PHP that I want my errors unescaped and in raw text?
推荐答案
这是一个 php.ini
设置,名为 html_errors
.
It is a php.ini
setting called html_errors
.
这篇关于如何告诉 PHP 将异常转储为原始文本而不是 HTML?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何告诉 PHP 将异常转储为原始文本而不是 HTML?
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01