php中header()函數的使用方法

來源:互聯網
上載者:User
本文主要和大家分享php中header()函數的使用方法,主要以代碼的方式和大家講解,希望能協助到大家。

 跳轉頁面header('Location:'.$url);  //Location和":"之間無空格。2、 聲明content-typeheader('content-type:text/html;charset=utf-8');3、 返回response狀態代碼header('HTTP/1.1 404 Not Found');4、 在某個時間後執行跳轉header('Refresh: 10; url=http://www.baidu.com/');  //10s後跳轉。

5、控制瀏覽器緩衝

名稱 含義 樣本
Expires 響應到期的日期和時間 Expires: Thu, 01 Dec 2010 16:00:00 GMT
Last-Modified 請求資源的最後修改時間 Last-Modified: Tue, 15 Nov 2010 12:45:26 GMT
Cache-Control 告訴所有的緩衝機制是否可以緩衝及哪種類型 Cache-Control: no-cache
Pragma 包括實現特定的指令,它可應用到響應鏈上的任何接收方 Pragma: no-cache
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驗證

名稱 含義 樣本
WWW-Authenticate 表明用戶端請求實體應該使用的授權方案 WWW-Authenticate: Basic
header('HTTP/1.1 401 Unauthorized');header('WWW-Authenticate: Basic realm="Top Secret"');

7、執行下載操作

名稱 含義 樣本
Content-Disposition 訊息頭指示回複的內容該以何種形式展示,是以內聯的形式(即網頁或者頁面的一部分),還是以附件的形式下載並儲存到本地。 Content-Disposition: attachment; filename=”filename.jpg”
header('Content-Type: application/octet-stream'); //設定內容類型header('Content-Disposition: attachment; filename="example.zip"'); //設定MIME使用者

8、作為附件

header('Content-Transfer-Encoding: binary'); //設定傳輸方式header('Content-Length: '.filesize('example.zip')); //設定內容長度

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.