Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有时更喜欢使用
header("Content-type: text/plain");
不要乱用 HTML。但是,每当发生错误时,或者当我使用 时var_dump(),它都会发出一个大的 HTML 块来美化输出。虽然它在 HTML 上下文中很棒,但我想在使用 text/plain 时禁用它。
var_dump()
有可能吗?运行时禁用美化?
如果启用了 PHP HTML 错误,XDebug 将向您显示错误。您可以执行以下操作之一
您可以禁用显示的 php 错误。
ini_set('display_errors', 0)
或者您可以将html_errors = Onxdebug 的 php.ini 设置更改为html_errors = Off'
html_errors = On
html_errors = Off'
ini_set('html_errors', 'off')
但是您应该知道,您不能使用ini_set().
ini_set()