php close error prompt

王林
Release: 2023-04-07 14:10:02
Original
2405 people have browsed it

php close error prompt

The easiest way is to add the following code directly to the PHP program code:

error_reporting(E_ALL^E_NOTICE^E_WARNING);
Copy after login

You can turn off all notice and warning level errors.

Put this statement in the function include file of your script, usually config.php or conn.php to control the output.

Of course, I can also set it in php.ini. The method is as follows:

Open the php.ini file in the PHP installation directory;

Find display_errors = On and change it to display_errors = off.

Note:

If you have copied the PHP.ini file to the windows directory, you must also set display_errors = On in c:windows/php.ini Modify to display_errors = off.

Solution to the failure of display_errors = Off in PHP .ini

Problem:

The PHP setting file php.ini has clearly set display_errors = Off, However, during operation, error messages still appear on the web page.

Solution:

Open the php.ini file in the PHP installation directory;

Find log_errors = off and change it to log_errors = on;

Find error_log = filename and change it to error_log="D:PHPerrlogphp_error.log";

Note:

If you have copied the PHP.ini file to windows directory, then you must also put the c:windows/php.ini file. In addition, php_error.log must have at least USER's modification and write permissions, otherwise the error log cannot be output.

Recommended tutorial: PHP video tutorial

The above is the detailed content of php close error prompt. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!