PHP header 的幾種用法

2021-09-09 09:21:28 字數 562 閱讀 2122

php header 的幾種用法,你知道幾種?

跳轉頁面

header(『location:』.$url); //location和":"之間無空格。

2. 宣告content-type

header(『content-type:text/html;charset=utf-8』);

3. 返回response狀態碼

4. 在某個時間後執行跳轉

header(『refresh: 10; url= //10s後跳轉。

5. 控制瀏覽器快取

header(「expires: mon, 26 jul 1997 05:00:00 gmt」);

header("last-modified: " . gmdate(「d, d m y h:i:s」) . 「gmt」);

header(「cache-control: no-cache, must-revalidate」);

header(「pragma: no-cache」);

6. 執行http驗證

php header函式用法

大中 小 1,可以使用heder命令,強制使瀏覽器使用新鮮的內容 無快取 也可以給 增加了乙個唯一的編號,使其每次都讀取新的內容,避免快取。例子 複製 示例 print 通常讀取的是快取檔案 print 增加了唯一的編號,使瀏覽器重新請求 w print 2,自定義php函式,將傳送給瀏覽器顯示。複...

PHP header 的7種用法

1.跳轉頁面header location url location和 之間無空格。2.宣告content typeheader content type text html charset utf 8 3.返回response狀態碼header http 1.1 404not found 4.在某...

PHP header 的7種用法

這篇文章介紹的內容是關於php header 的7種用法 有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下 1.跳轉頁面 header location url location和 之間無空格。2.宣告content type header content type text html ...