php設定回應頭的方法:1、設定回應頭檔案類型,語句如「header('Content-Type:text/css;charset=GBK');」;2、設定重定向;3 、設定檔下載。
php設定回應頭
#1、設定回應頭檔類型
<?php header('Content-Type:text/css;charset=GBK');//css文件类型,GBK编码 header('Content-Type:text/html;charset=UTF-8');//html文件类型,UTF-8类型 header('Content-Type:text/plain');//纯文件类型,不会做任何解析 header('Content-Type:applcation/javascript');//javascript文件类型 ?>
2、重定向(跳到其它網頁)
<?php header('Location:https://www.baidu.com');//跳转到百度网页 ?>
3、下載檔案
<?php header('Content-Type:application/octet-stream');//设置文件下载 header('Content-Disposition:attachment;filename=dome.txt'); ?>
推薦:《PHP教學》
以上是php如何設定響應頭的詳細內容。更多資訊請關注PHP中文網其他相關文章!