博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP中header的作用
阅读量:5092 次
发布时间:2019-06-13

本文共 646 字,大约阅读时间需要 2 分钟。

1、跳转

//若等待时间为0,则与header("location:")等效。 

//Header("Location:http://localhost//session.php");直接跳转

2、指定网页的内容

3、附件

   下载:

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

   header('Content-type: application/x-jpg'); //文件的类型 
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

转载于:https://www.cnblogs.com/limeng951/p/5634103.html

你可能感兴趣的文章
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>