headers_sent() 函數檢查HTTP 標頭是否發送/已傳送到何處。
如果標頭已傳送,則函數傳回TRUE,否則傳回FALSE。
headers_sent(file,line)
參數 | 描述 |
---|---|
file,line | 可選。如果設定file 和line 參數,headers_sent() 會將輸出開始的PHP 原始檔名和行號存入file 和line 變數中。 |
註:一旦報頭區塊已經傳送,您就不能使用header() 函數來傳送其它的標頭。
註:可選的file 和line 參數是PHP 4.3 新增的。
<?php// If no headers are sent, send oneif (!headers_sent()) { header("Location: http://www.w3cschool.cc/"); exit; }?><html><body>. .....
使用可選的file 和line 參數:
<?php// $file and $line are passed in for later use// Do not assign them values beforehandif (!headers_sent($file, $line)) { header("Location: http://www.w3cschool.cc /"); exit; // Trigger an error here }else { echo "Headers sent in $file on line $line"; exit; }?><html><body>......