PHP常见的header操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP常见的header操作相关的知识,希望对你有一定的参考价值。
- 404:
header ("HTTP/1.1 404 Not Found");
- 301:
header ("HTTP/1.1 301 Moved Permanently"); header ("Location:http://www.baidu.com");
- 下载文件:
header (‘Content-type: application/file‘); header ("Content-Disposition: attachment; filename=‘test.file‘"); readfile ("test.file");
以上是关于PHP常见的header操作的主要内容,如果未能解决你的问题,请参考以下文章