您好,登錄后才能下訂單哦!
php中header的用法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
php header的用法是:1、跳轉頁面;2、聲明【content-type】;3、返回response狀態碼;4、在某個時間后執行跳轉;5、控制瀏覽器緩存;6、執行http驗證。
php header的用法是:
1. 跳轉頁面
header('Location:'.$url); //Location和":"之間無空格
2. 聲明content-type
header('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. 控制瀏覽器緩存
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驗證
header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"');
7. 執行下載操作
header('Content-Type: application/octet-stream'); //設置內容類型 header('Content-Disposition: attachment; filename="example.zip"'); //設置MIME用戶作為附件 header('Content-Transfer-Encoding: binary'); //設置傳輸方式 header('Content-Length: '.filesize('example.zip')); //設置內容長度
感謝各位的閱讀!看完上述內容,你們對php中header的用法大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。