Home > Article > Backend Development > How to close php warning
How to turn off php warning: first specify the error_log file; then set "display_errors = Off" in php.ini.
Recommended: "PHP Video Tutorial"
php close warning
error_reporting Setting the error message reporting level
2047 I remember it should be E_ALL.
There are many configuration settings in the php.ini file. You should have set up your php.ini file and placed it in the appropriate directory, as documented in the instructions for installing PHP and Apache 2 on Linux (see Resources). When debugging PHP applications, there are two configuration variables that you should be aware of. Here are the two variables and their default values:
display_errors = Off error_reporting = E_ALL
E_ALL can tell you everything from bad coding practices to harmless tips to errors. E_ALL is a bit too detailed for the development process, because it also displays prompts on the screen for small things (such as variables not being initialized), which will mess up the browser's output
So it is not recommended to use 2047, it is better to The default value is changed to: error_reporting = E_ALL & ~E_NOTICE
Display_errors = Off in PHP.ini fails to solve the 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:
After checking log_errors=On, according to the official statement, when this log_errors is set to On, then the error_log file must be specified. If it is not specified or the specified file does not have permission to write, Then it will still be output to the normal output channel, which will invalidate the specified Off of display_errors, and the error message will still be printed. So set log_errors = Off and the problem is solved.
It is often seen that error_reporting (7) means: setting the level of error message reporting.
value constant 1 E_ERROR 2 E_WARNING 4 E_PARSE 8 E_NOTICE 16 E_CORE_ERROR 32 E_CORE_WARNING 64 E_COMPILE_ERROR 128 E_COMPILE_WARNING 256 E_USER_ERROR 512 E_USER_WARNING 1024 E_USER_NOTICE 2047 E_ALL 2048 E_STRICT 然而7=1+2+4 就是出错时显示1 E_ERROR 2 E_WARNING 4 E_PARSE <?php //禁用错误报告 error_reporting(0); //报告运行时错误 error_reporting(E_ERROR | E_WARNING | E_PARSE); //报告所有错误 error_reporting(E_ALL); ?>
The above is the detailed content of How to close php warning. For more information, please follow other related articles on the PHP Chinese website!