header()

//告訴瀏覽器此頁面的過時時間(用格林威治時間表示),只要是已通過去的日期便可。
header("Expires: Mon, 26 Jul 1970 05:00:00 GMT");
//告訴瀏覽器此頁面的最後更新日期(用格林威治時間表示)也就是當天,目的就是強迫瀏覽器獲取最新資料
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
//告訴客戶端瀏覽器不使用緩存
header("Cache-Control: no-cache, must-revalidate");
//參數(與之前的服務器兼容),即兼容HTTP1.0協議
header("Pragma: no-cache");
//輸出MIME類型
header("Content-type: application/file");
//文件長度
header("Content-Length: 227685");
//接受的範圍單位
header("Accept-Ranges: bytes");
//缺省時文件保存對話框中的文件名稱
header("Content-Disposition: attachment; filename=$filename"); php

Header("Location: http://www.php.net");html

 header("Content-Type:text/html;charset=utf-8");瀏覽器

相關文章
相關標籤/搜索