PHP中header函數(shù)的用法及其注意事項(xiàng)詳解
void header ( string $string [, bool $replace = true [, int $http_response_code ]] ) : Send a raw HTTP header
下面有一些使用header的幾種用法:
1、使用header函數(shù)進(jìn)行跳轉(zhuǎn)頁(yè)面;
header('Location:'.$url);
其中$url就是將要跳轉(zhuǎn)的url了。
這種用法的注意事項(xiàng)有以下幾點(diǎn):
•Location和":"之間不能有空格,否則會(huì)出現(xiàn)錯(cuò)誤(注釋:我剛測(cè)試了,在我本地環(huán)境下,沒(méi)有跳轉(zhuǎn)頁(yè)面,但是也沒(méi)有報(bào)錯(cuò),不清楚什么原因);
•在用header前不能有任何的輸出(注釋:這點(diǎn)大家都知道的,如果header之前有任何的輸出,包括空白,就會(huì)出現(xiàn)header already sent by xxx的錯(cuò)誤);
•header 后面的東西還會(huì)執(zhí)行的;
2、使用header聲明content-type
header('content-type:text/html;charset=utf-8');
這個(gè)沒(méi)有什么好說(shuō)的;
3、使用header返回response 狀態(tài)碼
header(sprintf('%s %d %s', $http_version, $status_code, $description));
樣式就是這樣的;
例如:header('HTTP/1.1 404 Not Found');
4、使用header在某個(gè)時(shí)間后執(zhí)行跳轉(zhuǎn)
header("Refresh: {$delay}; url={$url}");
其中$delay就是推遲跳轉(zhuǎn)的時(shí)間,$url為需要跳轉(zhuǎn)的url
例如:header('Refresh: 10; url=http://www.example.org/'); 意思為10s后跳轉(zhuǎn)到http://www.eexample.org這個(gè)網(wǎng)站
5、使用header控制瀏覽器緩存
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、執(zhí)行http驗(yàn)證
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
7、使用header進(jìn)行下載操作
header('Content-Type: application/octet-stream');//設(shè)置內(nèi)容類型 header('Content-Disposition: attachment; filename="example.zip"'); //設(shè)置MIME用戶作為附件下載 如果將attachment換成inline意思為在線打開 header('Content-Transfer-Encoding: binary');//設(shè)置傳輸方式 header('Content-Length: '.filesize('example.zip'));//設(shè)置內(nèi)容長(zhǎng)度 // load the file to send: readfile('example.zip');//讀取需要下載的文件
下面再給大家介紹PHP header 的幾種用法
跳轉(zhuǎn)頁(yè)面
header('Location:'.$url); //Location和":"之間無(wú)空格。
聲明content-type
header('content-type:text/html;charset=utf-8');
返回response狀態(tài)碼
header('HTTP/1.1 404 Not Found');
在某個(gè)時(shí)間后執(zhí)行跳轉(zhuǎn)
header('Refresh: 10; url=http://www.baidu.com/'); //10s后跳轉(zhuǎn)。
控制瀏覽器緩存
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");
執(zhí)行http驗(yàn)證
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
執(zhí)行下載操作
header('Content-Type: application/octet-stream'); //設(shè)置內(nèi)容類型
header('Content-Disposition: attachment; filename="example.zip"'); //設(shè)置MIME用戶作為附件
header('Content-Transfer-Encoding: binary'); //設(shè)置傳輸方式
header('Content-Length: '.filesize('example.zip')); //設(shè)置內(nèi)容長(zhǎng)度
相關(guān)文章
thinkphp3.2.3版本的數(shù)據(jù)庫(kù)增刪改查實(shí)現(xiàn)代碼
下面小編就為大家?guī)?lái)一篇thinkphp3.2.3版本的數(shù)據(jù)庫(kù)增刪改查實(shí)現(xiàn)代碼。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-09-09迪菲-赫爾曼密鑰交換(Diffie–Hellman)算法原理和PHP實(shí)現(xiàn)版
這篇文章主要介紹了迪菲-赫爾曼密鑰交換(Diffie–Hellman)算法原理和PHP實(shí)現(xiàn)版,需要的朋友可以參考下2015-05-05TP5(thinkPHP5)框架基于ajax與后臺(tái)數(shù)據(jù)交互操作簡(jiǎn)單示例
這篇文章主要介紹了TP5(thinkPHP5)框架基于ajax與后臺(tái)數(shù)據(jù)交互操作,結(jié)合實(shí)例形式分析了thinkPHP5前端基于jQuery的ajax數(shù)據(jù)提交及后臺(tái)數(shù)據(jù)接收、處理相關(guān)操作技巧,需要的朋友可以參考下2018-09-09微信支付開發(fā)動(dòng)態(tài)鏈接Native支付
本篇文章主要介紹微信支付下的基于動(dòng)態(tài)鏈接二維碼的Native支付實(shí)現(xiàn)流程,希望能給開發(fā)微信支付的小伙伴提供幫助2016-07-07