分享PHP header函數使用教程_PHP教程

WBOY
發布: 2016-07-21 16:12:28
原創
761 人瀏覽過

複製程式碼程式碼如下:

//修正404頁:
header( ' HTTP/1.1 200 確定');
// 設定404 標頭:
header('HTTP/1.1 404 Not Found');
// 設定永久移動標頭(適合重定向)
// 與位置標頭一起使用
header('HTTP/1.1 301 永久移動');
// 重定向到新位置:
header('Location: http://www.example .org/');
// 延遲重定向:
header('Refresh: 10; url=http://www.example.org/');
print '10秒後您將被重定向';
// 你也可以使用HTML 語法:// header('Content -Transfer-Encoding: binary');
// 載入要傳送的檔案:readfile('example.zip');
// 停用快取目前文件:
header('Cache-Control: no -cache, no-store, max-age=0, Must-revalidate');
header('過期時間:1997 年7 月26 日星期一05:00:00 GMT');
// Pastheader 中的日期('Pragma: no-cache');
// 設定內容類型:
header('Content-Type: text/html; charset=iso-8859-1');
header('內容類型:text/html; charset=utf-8');
header('內容類型:文字/純文字');
// 純文字檔案
header('Content- Type: image/jpeg');
// JPG 圖片
header('Content-Type: application/zip');
// ZIP 檔案
header('Content-Type: application/ pdf');
// PDF 檔案
header('Content-Type: audio/mpeg');
// 音訊MPEG (MP3,...) 檔案
header('Content- Type: application/x-shockwave-flash');
// Flash 動畫// 顯示簽到框
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate:基本領域=「絕密」');
print '如果使用者點選取消或'將顯示的文字;
print '輸入錯誤的登入資料';
? >


http://www.bkjia.com/PHPjc/313653.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313653.htmlTechArticle複製程式碼如下: ?php // 修正404 頁: header('HTTP/1.1 200 OK'); / / 設定404 標頭: header('HTTP/1.1 404 Not Found'); // 設定永久移動標頭(適合重新定義...
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板