来源:未知 时间:2014-12-11 09:35 作者:xxadmin 阅读:次
[导读] 有时我们不想让浏览器直接打开文件,如PDF文件,而是要直接下载文件,那么以下函数可以强制下载文件,函数中使用了application/octet-stream头类型。 1 function download( $filename ){ 2 3 if ((...
有时我们不想让浏览器直接打开文件,如PDF文件,而是要直接下载文件,那么以下函数可以强制下载文件,函数中使用了application/octet-stream头类型。 1 function download($filename){ 2 3 if ((isset($filename))&&(file_exists($filename))){ 4 5 header("Content-length: ".filesize($filename)); 6 7 header('Content-Type: application/octet-stream'); 8 9 header('Content-Disposition: attachment; filename="' . $filename . '"'); 10 11 readfile("$filename"); 12 13 } else { 14 15 echo "Looks like file does not exist!"; 16 17 } 18 19 } 20 21 //使用方法如下 22 23 download('/down/test_45f73e852.zip'); |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com