php remove error

王林
Release: 2023-02-24 19:10:01
Original
3289 people have browsed it

php remove error

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

This method can turn off all notice and warning levels mistake.

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

You can also set it in php.ini 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 change display_errors = On in c:windows/php.ini to display_errors = off

The solution to the failure of display_errors = Off in PHP .ini

Problem:

The PHP setting file php.ini has clearly been Set display_errors = Off, but error messages will still appear on the web page during operation.

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" (the directory and file name here D:PHPerrlogphp_error.log is whatever you choose)

Note: If you have copied the PHP.ini file to the windows directory, then you must At the same time, copy 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 remove error. 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
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!