分享至
在看LOG時發現 Undefined variable 和 Undefined index 的問題但又懶得解決(最好別這樣)於是去查了一下解決的方式
在 php 腳本中加上
error_reporting(E_ALL & ~E_NOTICE);
就可以避免掉 log 產生的 notice 錯誤雖然這做法不好啦,最好還是解決一下為什麼會產生 Undefined variable 和 Undefined index 的問題
參考https://ianakaberlin.medium.com/php-%E9%97%9C%E9%96%89-undefined-variable-%E8%88%87-undefined-index-%E8%AD%A6%E5%91%8A-e-notice-error-reporting-e-all-%E4%BC%8A%E6%81%A9%E8%B8%A9%E5%9D%91%E7%AD%86%E8%A8%98-22cf7ae51851
IT邦幫忙