header ( )函數發送一個原始HTTP頭到客戶端。 header(string,replace,http_response_code)重要的是要看到,標題( )必須在任何所謂的實際產出發送
PHP header 函數教程
定義和用法
header ( )函數發送一個原始HTTP頭到客戶端。
重要的是要看到,標題( )必須在任何所謂的實際產出發送(在PHP 4和以後,您可以使用輸出緩沖來解決這個問題) :
// This results in an error.
// The output above is before the header() call
header('Location: http://www.example.com/');
?>
語法:
header(string,replace,http_response_code)
Parameter
提示和說明 注:自PHP 4.4這一功能可以防止一個以上的標題發送一次。這是一個保護,防止頭注入攻擊。 范例1 防止頁面緩存:
// Date in the pastheader("Expires: Mon, 26 Jul 1997 05:00:00 GMT");header("Cache-Control: no-cache");header("Pragma: no-cache");
示例2 讓用戶將提示保存生成的PDF文件(內容處置標題是用來提供建議的文件名,並迫使浏覽器來顯示保存對話框) :
header("Content-type:application/pdf");
// It will be called downloaded.pdfheader("Content-Disposition:attachment;filename='downloaded.pdf'");
// The PDF source is in original.pdfreadfile("original.pdf");