首頁  >  文章  >  後端開發  >  php header函數怎麼設定HTTP頭

php header函數怎麼設定HTTP頭

王林
王林原創
2020-11-04 11:31:572031瀏覽

php header函數設定HTTP頭的方法:【header( 'Content-Type:text/html;charset=utf-8 ');】,表示設定編碼為utf-8。

php header函數怎麼設定HTTP頭

PHP header函數設定HTTP頭的範例如下:

(影片教學推薦:java影片教學

定義編碼

header( 'Content-Type:text/html;charset=utf-8 ');

設定一個404頭:

header('HTTP/1.1 404 Not Found');

設定位址被永久的重定向

header('HTTP/1.1 301 Moved Permanently');

到一個新位址

header('Location: http://www.example.org/');

檔案延遲轉向:

header('Refresh: 10; url=http://www.example.org/');
print 'You will be redirected in 10 seconds';

告訴瀏覽器最後一次修改時間

$time = time() - 60; // or filemtime($fn), etc
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');

對目前文件停用快取

header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Pragma: no-cache');

相關推薦:php培訓

#

以上是php header函數怎麼設定HTTP頭的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn