Home > Article > Backend Development > How to set php not to prompt errors
How to set up php without prompting errors: 1. Use the "error_reporting(E_ALL & ~E_NOTICE)" method directly in the php code; 2. Search for "display_errors = on" in the "php.ini" configuration file and changed to off.
Recommended: "PHP Tutorial"
php settings do not prompt errors
1. Use it directly in the php code:
error_reporting(E_ALL & ~E_NOTICE).
2, or: ini_set("error_reporting","E_ALL & ~E_NOTICE");
3, or search for display_errors = on in the php.ini configuration file and change it to off.
The above is the detailed content of How to set php not to prompt errors. For more information, please follow other related articles on the PHP Chinese website!