The easiest way is to add the following code directly to the php program code:
error_reporting(E_ALL^E_NOTICE^E_WARNING);
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!