龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

强制 php强制下载文件的代码

时间:2014-06-05 15:17来源:网络整理 作者:网络 点击:
分享到:
php强制下载文件的代码 [代码片段(11行)]
header("Content-type: application/octet-stream");

// displays progress bar when downloading (credits to Felix ;-))
header("Content-Length: " . filesize('myImage.jpg'));

// file name of download file
header('Content-Disposition: attachment; filename="myImage.jpg"');

// reads the file on the server
readfile('myImage.jpg');

精彩图集

赞助商链接