|
下载完附件名称和大小正常,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);
}
|
|