關閉錯誤我使用不要在我的頁面
error_reporting(0);
error_reporting(E_NONE);
ini_set("display_errors", "off");
ini_set("display_errors", 0);
但錯誤依然在我的網頁
Warning: xxxxxxxxxxx
關閉錯誤我使用不要在我的頁面
error_reporting(0);
error_reporting(E_NONE);
ini_set("display_errors", "off");
ini_set("display_errors", 0);
但錯誤依然在我的網頁
Warning: xxxxxxxxxxx
E_NONE
。display_error
,只有display_errors
在你的情況你正在通過E_WARNING..It產生warning..Which因爲腳本的失敗分貝connection..Execution可以拋出不會停止但它也許仍然是一個問題..
http://php.net/manual/errorfunc.constants.php
如果它是一個數據庫連接警告書寫異常是一個很好的做法
http://php.net/manual/en/language.exceptions.php如果您想忽略警告
嘗試:
error_reporting(E_ALL^E_WARNING);
但請不要因爲這些錯誤,你需要修復這些使用error_reporting(0);
,和腳本的執行將被在DEVE停止
使用
error_reporting(E_ALL);
ini_set("display_errors", 1);
lopment ..
一個更好的選擇是解決和修復你所面對的錯誤,簡單地忽略它們從來就不是一個好主意。 – Qirel
@Hasan檢查手冊中的示例: - http://php.net/manual/en/function.error-reporting.php –
已解決問題。感謝所有 – Hasan