How to prevent php from displaying error messages

王林
Release: 2023-03-07 06:32:02
Original
3465 people have browsed it

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);
Copy after login

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
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template