我有一個問題給你。php自定義錯誤處理
在我的網站,我有以下的錯誤報告級別
// PHP errors that will be reported when the script is run.
error_reporting(0);
問題是,當會話超時,我得到了一個空白頁面,用戶必須輸入地址再次轉到主頁,登錄。
有沒有一種方法可以嵌入到上面的代碼的鏈接,所以當會話超時它會回顯一個鏈接到主頁面?
我試圖
// PHP errors that will be reported when the script is run.
error_reporting(0);
echo ("index.php");
,沒有運氣, 任何想法?
謝謝。 :)
我該怎麼做?如果你不介意我問? – Trey 2011-03-03 05:49:37
檢查您在會話中存儲的數據,如果未設置,請使用header()將「位置」標題發送回瀏覽器。 – Stephen 2011-03-03 05:55:37