首页 >函数列表 >headers_sent

headers_sent

headers_sent

(PHP 4, PHP 5)

headers_sentChecks if or where headers have been sent

说明

bool headers_sent ([ string &$file [, int &$line ]] )

Checks if or where headers have been sent.

You can't add any more header lines using the header() function once the header block has already been sent. Using this function you can at least prevent getting HTTP header related error messages. Another option is to use Output Buffering.

参数

file

If the optional file and line parameters are set, headers_sent() will put the PHP source file name and line number where output started in the file and line variables.

line

The line number where the output started.

返回值

headers_sent() will return FALSE if no HTTP headers have already been sent or TRUE otherwise.

更新日志

版本 说明
4.3.0 The optional file and line parameters were added.

范例

Example #1 Examples using headers_sent()

<?php

// If no headers are sent, send one
if (!headers_sent()) {
    
header('Location: http://www.example.com/');
    exit;
}

// An example using the optional file and line parameters, as of PHP 4.3.0
// Note that $filename and $linenum are passed in for later use.
// Do not assign them values beforehand.
if (!headers_sent($filename$linenum)) {
    
header('Location: http://www.example.com/');
    exit;

// You would most likely trigger an error here.
} else {

    echo 
"Headers already sent in $filename on line $linenum.
          
"Cannot redirect, for now please click this <a " .
          
"href="http://www.example.com">link</a> instead ";
    exit;
}

?>

注释

Note:

Headers will only be accessible and output when a SAPI that supports them is in use.

参见

  • ob_start() - 打开输出控制缓冲
  • trigger_error() - Generates a user-level error/warning/notice message
  • headers_list() - Returns a list of response headers sent (or ready to send)
  • header() - Send a raw HTTP header for a more detailed discussion of the matters involved.

  • checkdnsrr
  • closelog
  • define_syslog_variables
  • dns_check_record
  • dns_get_mx
  • dns_get_record
  • fsockopen
  • gethostbyaddr
  • gethostbyname
  • gethostbynamel
  • gethostname
  • getmxrr
  • getprotobyname
  • getprotobynumber
  • getservbyname
  • getservbyport
  • header
  • headers_list
  • headers_sent
  • header_register_callback
  • header_remove
  • http_response_code
  • inet_ntop
  • inet_pton
  • ip2long
  • long2ip
  • openlog
  • pfsockopen
  • setcookie
  • setrawcookie
  • socket_get_status
  • socket_set_blocking
  • socket_set_timeout
  • syslog
  • PHP MySQL HTML CSS JavaScript MSSQL AJAX .NET JSP Linux Mac ASP 服务器 SQL jQuery C# C++ java Android IOS oracle MongoDB SQLite wamp 交通频道