我有2兩個PHP pages.One是主要的,包括第二個文件裏面,我想添加一個過期的標頭,但我得到以下錯誤添加Expires頭被納入到另一個頁面
Warning: Cannot modify header information -
headers already sent by (output started at..
在第一個
ob_start('ob_gzhandler', 6);
/// lots of html here
include("pageTwo.php");
/// lots of html here
ob_end_flush();
在第二頁
ob_start();
header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
/// lots of html here
ob_end_flush();