PHP headers_sent() 函數(shù)

2018-11-21 16:30 更新

PHP headers_sent() 函數(shù)


PHP HTTP 參考手冊(cè) 完整的 PHP HTTP 參考手冊(cè)

定義和用法

headers_sent() 函數(shù)檢查 HTTP 報(bào)頭是否發(fā)送/已發(fā)送到何處。

如果報(bào)頭已發(fā)送,該函數(shù)返回 TRUE,否則返回 FALSE。

語(yǔ)法

headers_sent(file,line)

參數(shù) 描述
file,line 可選。如果設(shè)置 file 和 line 參數(shù),headers_sent() 會(huì)把輸出開始的 PHP 源文件名和行號(hào)存入 file 和 line 變量中。


提示和注釋

注釋:一旦報(bào)頭塊已經(jīng)發(fā)送,您就不能使用 header() 函數(shù)來(lái)發(fā)送其它的報(bào)頭。

注釋:可選的 file 和 line 參數(shù)是 PHP 4.3 中新增的。


實(shí)例 1

<?php
// If no headers are sent, send one
if (!headers_sent())
{
header("Location: //www.o2fo.com/");
exit;
}
?>

<html>
<body>

...
...


實(shí)例 2

使用可選的 file 和 line 參數(shù):

<?php
// $file and $line are passed in for later use
// Do not assign them values beforehand
if (!headers_sent($file, $line))
{
header("Location: //www.o2fo.com/");
exit;
// Trigger an error here
}
else
{
echo "Headers sent in $file on line $line";
exit;
}
?>

<html>
<body>

...
...


PHP HTTP 參考手冊(cè) 完整的 PHP HTTP 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)