摘要: 1 备注:使用header()函数前,不能有任何输出,前面放个ob_start就行了 2 // ok 3 header('HTTP/1.1 200 OK'); 4 5 //设置一个404头: 6 header('HTTP/1.1 404 Not Found'); 7 8 //设置地址被永久的重定向 9 header('HTTP/1.1 301 Moved Permanently');10 11 //转到一个新地址12 header('Location: http://www.example.org/');13 14 //文件延迟转 阅读全文
posted @ 2011-02-27 22:45 小伍BLOG 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1 备注:使用header()函数前,不能有任何输出,前面放个ob_start就行了 2 // ok 3 header('HTTP/1.1 200 OK'); 4 5 //设置一个404头: 6 header('HTTP/1.1 404 Not Found'); 7 8 //设置地址被永久的重定向 9 header('HTTP/1.1 301 Moved Permanently');10 11 //转到一个新地址12 header('Location: http://www.example.org/');13 14 //文件延迟转 阅读全文
posted @ 2011-02-27 22:43 小伍BLOG 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1<?php2header("Content-Type: application/force-download");3header("Content-Disposition: attachment; filename=ins.jpg");4readfile("imgs/test_Zoom.jpg");5?>第一行代码是强制下载;第二行代码是给下载的内容指定一个名字;第三行代码是把下载的内容读进文件中。来源:http://www.cnblogs.com/aiyuchen/archive/2011/02/11/1951280. 阅读全文
posted @ 2011-02-27 19:29 小伍BLOG 阅读(2710) 评论(0) 推荐(0) 编辑
摘要: 欢迎来到 PHPRPC 世界http://www.phprpc.org/zh_CN/docs/ 阅读全文
posted @ 2011-02-27 19:08 小伍BLOG 阅读(205) 评论(0) 推荐(0) 编辑