Home > Article > Backend Development > How to prevent php from displaying error messages
How to prevent php from displaying error messages: First use a text editor to open the php.ini configuration file; then modify the configuration [display_errors = Off]. If you want to enable error prompts, just modify the configuration [display_errors = On].
If you do not have the permission to modify php.ini, the method is as follows:
(Recommended tutorial: php video tutorial )
// 只需在php文件中加入这两句即可开启PHP错误提示 ini_set("display_errors", "On"); error_reporting(E_ALL | E_STRICT);
If you have the permission to modify php.ini, the method is as follows:
# 开发错误提示 display_errors = Off 修改为 display_errors = On # 修改错误级别 error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT 修改为 error_reporting = E_ALL
Related recommendations: php training
The above is the detailed content of How to prevent php from displaying error messages. For more information, please follow other related articles on the PHP Chinese website!