How to turn off notice warning in phpini
1. Change error_reporting## in the php.ini file
#Change to:error_reporting=E_ALL & ~E_NOTICE
<?php error_reporting(E_ALL^E_NOTICE); ?>
error_reporting(0);
PHP Chinese website!
The above is the detailed content of How to turn off notice warning in phpini. For more information, please follow other related articles on the PHP Chinese website!