PHP How to turn off notice error?
1. Change the value of "error_reporting" to "E_ALL&~E_NOTICE" in the php.ini file;
2. In PHP Just write "error_reporting(E_ALL^E_NOTICE)" in the file header.
Recommended tutorial: "PHP Tutorial"
The above is the detailed content of How to turn off notice error in PHP?. For more information, please follow other related articles on the PHP Chinese website!