PHP headers_sent() 函数
PHP headers_sent() 函数
完整的 PHP HTTP 参考手册定义和用法
headers_sent() 函数检查 HTTP 报头是否发送/已发送到何处。
如果报头已发送,该函数返回 TRUE,否则返回 FALSE。
语法
headers_sent(file,line)
参数 | 描述 |
---|---|
file,line | 可选。如果设置 file 和 line 参数,headers_sent() 会把输出开始的 PHP 源文件名和行号存入 file 和 line 变量中。 |
提示和注释
注释:一旦报头块已经发送,您就不能使用 header() 函数来发送其它的报头。
注释:可选的 file 和 line 参数是 PHP 4.3 中新增的。
实例 1
<?php
// If no headers are sent, send one
if (!headers_sent())
{
header("Location: http://www.w3cschool.cc/");
exit;
}
?>
<html>
<body>
...
...
// If no headers are sent, send one
if (!headers_sent())
{
header("Location: http://www.w3cschool.cc/");
exit;
}
?>
<html>
<body>
...
...
实例 2
使用可选的 file 和 line 参数:
<?php
// $file and $line are passed in for later use
// Do not assign them values beforehand
if (!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>
...
...
// $file and $line are passed in for later use
// Do not assign them values beforehand
if (!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>
...
...
完整的 PHP HTTP 参考手册
相关文章
- PHP While 循环
- PHP $_GET 变量
- PHP date() 函数
- PHP 异常处理
- PHP array_walk_recursive() 函数
- PHP reset() 函数
- PHP sort() 函数
- PHP curl_init函数
- PHP fgetss() 函数
- PHP is_file() 函数
- PHP realpath() 函数
- PHP ftp_alloc() 函数
- PHP ftp_fget() 函数
- PHP ftp_nb_get() 函数
- PHP mysqli_more_results() 函数
- PDOStatement::fetch
- PDOStatement::getColumnMeta
- PHP print() 函数
- PHP Zip File 函数
- PHP image2wbmp – 输出WBMP图片