知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

PHP 弹出文件下载 原理 代码

发布时间:2015-05-27 19:19:47作者:知识屋

/** * @author      default7 * @description 演示PHP弹出下载的原理 * * @param $file_name */function downFile($file_name){    $file_path = "/tmp/" . $file_name;    $buffer = 102400; //一次返回102400个字节    if (!file_exists($file_path)) {        echo "<script type='text/javascript'> alert('对不起!该文件不存在或已被删除!'); </script>";        return;    }    $fp = fopen($file_path, "r");    $file_size = filesize($file_path);    $file_data = '';    while (!feof($fp)) {        $file_data .= fread($fp, $buffer);    }    fclose($fp);    //Begin writing headers    header("Pragma: public");    header("Expires: 0");    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");    header("Cache-Control: public");    header("Content-Description: File Transfer");    header("Content-type:application/octet-stream;");    header("Accept-Ranges:bytes");    header("Accept-Length:{$file_size}");    header("Content-Disposition:attachment; filename={$file_name}");    header("Content-Transfer-Encoding: binary");    echo $file_data;}


(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜