码迷,mamicode.com
首页 > Web开发 > 详细

PHP中header的作用

时间:2016-07-01 20:13:59      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

1、跳转

//若等待时间为0,则与header("location:")等效。 
//Header("Location:http://localhost//session.php");直接跳转

2、指定网页的内容

3、附件


   下载:

    $filename = "tupian.jpg"; //文件路径  可以绝对路径也可以相对路径
   header(‘Content-type: application/x-jpg‘); //文件的类型 http://www.w3school.com.cn/media/media_mimeref.asp
header(‘Content-Disposition: attachment; filename="保存时的文件名.jpg"‘); //下载显示的名字 
readfile("$filename"); 
exit(); 

pg"; //文件路径//

octet-stream‘); //文件的类型 octet-stream readfile("$filename"); 
exit(); 

     查看:

$link = "tupian.jpg"; //文件路径  可以绝对路径也可以相对路径

//$link = "新建文本文档.xml"; //文件路径  可以绝对路径也可以相对路径
if (isset($link)) 
                { 
                    Header("HTTP/1.1 303 See Other"); 
                    Header("Location: $link"); 
                    exit; 
                } 

 
0
0

PHP中header的作用

标签:

原文地址:http://www.cnblogs.com/limeng951/p/5634103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!