前端之家收集整理的这篇文章主要介绍了
php 强制下载文件功能实例,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对
PHP强制下载
文件的
代码感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!
/**
* 强制下载文件的代码
*
* @param
* @arrange 网: www.jb51.cc
**/
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');
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528587.html