thinkphp 下载功能
thinkphp吧
全部回复
仅看楼主
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
level 5
怎么会呢,我的下载做出来好好的啊。
2011年10月20日 10点10分 2
level 1
bingefire 楼主
我改好了 明白了
2011年10月21日 02点10分 3
level 5
你是因为什么原因呢?
2011年11月01日 13点11分 4
level 1
bingefire 楼主
编码的问题
2011年11月07日 02点11分 5
level 2
多看些手册吧,官方的例子中也说得很明白
2012年04月29日 05点04分 7
1