Home >Backend Development >PHP Problem >How to disable NOTICE output in php
How to disable NOTICE output in php: first find and open the "php.ini" file; then modify the content to "error_reporting=E_ALL & ~E_NOTICE"; finally save the modification.
Recommended: "PHP Video Tutorial"
php prohibits NOTICE output
Change error_reporting in the php.ini file to:
error_reporting=E_ALL & ~E_NOTICE
The above is the detailed content of How to disable NOTICE output in php. For more information, please follow other related articles on the PHP Chinese website!