PHP 如何關閉 notice 報錯?
1、在php.ini檔案中將「error_reporting」的值改為「E_ALL&~E_NOTICE」;
2、在PHP檔案頭部寫入「error_reporting(E_ALL^E_NOTICE)」即可。