码迷,mamicode.com
首页 > 其他好文 > 详细

文件下载-支持中文文件名

时间:2014-09-18 18:32:54      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   文件   div   sp   cti   

function getTmp(){
    $file_name = ‘orderTemp.xlsx‘;
    $file_path = dirname(__FILE__);
    #判断一下文件是否存在
    if(! file_exists($file_path. ‘/‘ .$file_name)){
        echo "file not exists";
        return;
    }
    #存在的话,只读方式打开
    $fp = fopen($file_name,"r");
    #获取文件大小
    $file_size = filesize($file_name);
    #让下载的文件名是中文
    $file_name = iconv(‘UTF-8‘, ‘gbk‘, ‘订单表格模板.xlsx‘);
    #粘贴头代码
    header("Content-Type: application/octet-stream");
    header("Accept-Ranges: bytes");
    header("Accept-Length: $file_size");
    header("Content-Disposition: attachment; filename=" . $file_name);
    #设定一次读取的字节数
    $buffer = 1024;
    #存储文件到本地
    while(! feof($fp)){
        $file_data = fread($fp,$buffer);
        echo $file_data;
    }
    fclose($fp);
}

 

文件下载-支持中文文件名

标签:style   blog   color   io   os   文件   div   sp   cti   

原文地址:http://www.cnblogs.com/kaels/p/3979626.html

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