码迷,mamicode.com
首页 > Web开发 > 详细

PHP下载功能代码(2)

时间:2015-05-12 14:59:51      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

function wo_down($file_dir,$file_name){
  $file = @ fopen($file_dir . $file_name,"r");
    if (!$file) {
    echo "文件找不到";
    } else {
    header("content-type: application/octet-stream");
    header("content-disposition: attachment; filename=" . $file_name);
    while (!feof ($file)) {
    echo fread($file,50000);
    }
    fclose ($file);
    }
}

PHP下载功能代码(2)

标签:

原文地址:http://www.cnblogs.com/pengboyu/p/4497102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!