level 1
bingefire
楼主
public function download(){
header("Content-Type:text/html;charset=UTF-8");
$file_dir = "./public/upload/file/";
$db=M('medias');
$list=$db->where('media_id='.$_GET['id'])->order('media_id desc')->select();
$showname=$list[0]['showname'];
$name=$list[0]['filename'];
$filename=$file_dir . $name;
import("@.ORG.Http");
$download=new Http();
$download->download($filename,$showname);
}
下载下来后文件打不开
2011年10月19日 05点10分
1
header("Content-Type:text/html;charset=UTF-8");
$file_dir = "./public/upload/file/";
$db=M('medias');
$list=$db->where('media_id='.$_GET['id'])->order('media_id desc')->select();
$showname=$list[0]['showname'];
$name=$list[0]['filename'];
$filename=$file_dir . $name;
import("@.ORG.Http");
$download=new Http();
$download->download($filename,$showname);
}
下载下来后文件打不开