且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

php 文件下载

更新时间:2022-10-03 14:19:19

1
2
3
4
5
6
<?php
header('Content-Type:image/jpg');                               //设置图片类型
header('Content-Disposition:attachment;filename="test.jpg"');   //描述下载文件
header('Content-Length:'.filesize('images/649.562433.jpg'));    //定义下载文件大小
readfile('images/649.562433.jpg');                              //读取文件,执行下载
?>


本文转自  wbb827  51CTO博客,原文链接:http://blog.51cto.com/wbb827/1325286