我们在实际开发中经常使用header()实现一些功能,这篇文章介绍关于header()的7中用法,需要的伙伴的开参考一下。
PHP header()的7中用法:
1、跳转页面
可以使用header()实现跳转页面功能。
header('Location:'.$url); // $url 跳转页面的地址
2、声明 content-type
调用API接口时,一般都会声明 content-type 的类型,否则无法读写数据。
header('content-type:text/html;charset=utf-8');header('content-type:application/json;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')); //设置内容长度
来源地址:https://blog.csdn.net/weixin_44888397/article/details/132520961