如何关闭PHP + MySQL错误格式

时间:2012-05-22 16:47:32

标签: error-reporting php

如何关闭PHP错误格式以获取纯文本?这也应该影响MySQL相关的功能。

我希望获得纯文本,而不是结构化HTML错误消息。

更新

AS Artefact2 建议我需要修改php.ini文件,所以

ini_set('html_errors', false);

如果我需要实时的话就可以了。

1 个答案:

答案 0 :(得分:7)

http://www.php.net/manual/en/errorfunc.configuration.php#ini.html-errors

在php.ini中将html_errors设置为“Off”。