PHP header 的幾種用法

  1. 跳轉頁面html

    header('Location:'.$url);  //Location和":"之間無空格。瀏覽器

     

  2. 聲明content-type緩存

    header('content-type:text/html;charset=utf-8');app

     

  3. 返回response狀態碼url

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

     

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

    header('Refresh: 10; url=http://www.baidu.com/');  //10s後跳轉。utf-8

     

  5. 控制瀏覽器緩存it

    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");io

    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')); //設置內容長度

相關文章
相關標籤/搜索