0
我正在檢查一個開源Web應用程序。有aproblem它使用error_get_last功能在這個代碼error_get_last函數中的緩存錯誤?
$last_error = error_get_last();
if($last_error['type'] === E_ERROR || $last_error['type'] === E_PARSE) {
include 'error.php';
}
if (ob_get_length()) ob_end_flush();
,因爲它似乎它緩存舊代碼的老錯誤,不過編輯的代碼沒有任何錯誤這讓我很煩。因此它顯示了一段時間的舊錯誤。有誰知道如何解決這個問題?感謝您的幫助
編輯:我展示功能__shutdown(),其中在請求
function __shutdown() {
$logger_session = Logger::getSession();
if (($logger_session instanceof Logger_Session) && !$logger_session->isEmpty()) {
Logger::saveSession();
} // if
$last_error = error_get_last();
if($last_error['type'] === E_ERROR || $last_error['type'] === E_PARSE) {
include 'error.php';
}
if (ob_get_length()) ob_end_flush();
} // __shutdown
什麼錯誤?我們應該猜測? – zerkms 2011-02-08 05:22:06
它是流行的開源Web應用程序嗎?我們可以知道開源的名字嗎? – 2011-02-08 05:47:18