用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1274|回复: 0
收起左侧

[上传/下载] 请大家帮忙,下载附件出问题了

[复制链接]
发表于 2017-9-7 17:34:05 | 显示全部楼层 |阅读模式
下载完附件名称和大小正常,docx格式的文件提示内容有错误,但是用Windows的word能打开内容,但是doc格式文档不能打开,提示选择文档编码,其它格式都不能打开,提示文件损坏或格式......
function downacc($acc_id){
                 $this->load->helper('download');
                 $this->load->helper('string');
                $this->load->database();
                $patten='/^[\d]+$/';
                if(!preg_match($patten,$acc_id)){
                        exit("<span style='color:red;'>非法操作!!</span>");
                }
                $sql="select file_name,file_url from le_contract_accessory where id={$acc_id}";
                $res=$this->db->query($sql);
                $shuju=$res->first_row();
                $tmp=ltrim($shuju->file_url,'/');
                 $name=basename($shuju->file_name);
        $data = file_get_contents($tmp);
        force_download($name, $data,true);
        }

本版积分规则