美文网首页
PHP常用header函数

PHP常用header函数

作者: 呆猫极客 | 来源:发表于2017-03-20 15:28 被阅读0次

1.实现重定向(状态码302)

<?php
header(”Location: http://www.baidu.com”);
exit;

2.刷新页面

header("refresh:2;url=http://www.baidu.com");

3.页面不存在(404页面)

<?php 
header('HTTP/1.1 404 Not Found'); 
header("status: 404 Not Found"); 

4.永久重定向(状态码301)

<?
Header( "HTTP/1.1 301 Moved Permanently" ) ;
Header( "Location: www.baidu.com" );

5.下载文件

//返回的文件
header("Content-type: application/octet-stream");
//按照字节大小返回
header("Accept-Ranges: bytes");
//返回文件大小
header("Accept-Length: $file_size");
//这里客户端的弹出对话框,对应的文件名
header("Content-Disposition: attachment; filename=".$file_name);

6.文档语言

<?
header('Content-language: en');

7.设置文档类型

header('Content-Type: text/html; charset=utf-8');//utf-8格式html
header('Content-Type: text/plain'); //纯文本格式
header('Content-Type: image/jpeg'); //JPG图片
header('Content-Type: application/zip'); // ZIP文件
header('Content-Type: application/pdf'); // PDF文件
header('Content-Type: audio/mpeg'); // 音频文件
header('Content-Type: application/x-shockwave-flash'); //Flash动画

8.设置文档长度

<?
header('Content-Length: 1024');

9.禁用缓存

<?
header("Cache-Control:no-cache,must-revalidate,no-store");
header("Pragma:no-cache");
header("Expires:-1");
header ( " Last-Modified:" . gmdate ( " D, d M Y H:i:s " ). "GMT " );

相关文章

网友评论

      本文标题:PHP常用header函数

      本文链接:https://www.haomeiwen.com/subject/igzbnttx.html