Home  >  Article  >  Backend Development  >  How to prevent php from displaying error messages

How to prevent php from displaying error messages

王林
王林Original
2020-11-03 13:58:043308browse

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].

How to prevent php from displaying error messages

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn