php header用於向客戶端發送原始的HTTP標頭,該函數的語法是“header(string,replace,http_response_code)”,其中參數string表示要傳送的標頭字串。
PHP header() 函數
##定義與用法header() 函數向客戶端發送原始的HTTP 標頭。 認識到一點很重要,即必須在任何實際的輸出被發送之前調用header() 函數(在PHP 4 以及更高的版本中,您可以使用輸出緩存來解決此問題):<html> <?php // 结果出错 // 在调用 header() 之前已存在输出 header('Location: http://www.example.com/'); ?>
header(string,replace,http_response_code)
<?php // Date in the past header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); ?> <html> <body> ... ...
<?php header("Content-type:application/pdf"); // 文件将被称为 downloaded.pdf header("Content-Disposition:attachment;filename='downloaded.pdf'"); // PDF 源在 original.pdf 中 readfile("original.pdf"); ?> <html> <body> ... ...
PHP中文網!
以上是php的header的用法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!