能在视图里实现选择下载哪个文件吗?

浏览:277 发布日期:2015/12/29 分类:求助交流 关键字: TP 新手 MySQL
这是需要实现选择下载哪个文件的视图<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>下载</title>
    <link href="__PUBLIC__/css/download.css" rel="stylesheet" type="text/css">
</head>
<body>
<form method="get">
    <table>

        <tr>
            <td><a href="__APP__/Home/File/download/id/{$id}">下载</a></td>
        </tr>

    </table>
</form>
</body>
</html>
这是上传的函数和路径class FileController extends Controller{
    public function upload(){
        $upload = new \Think\Upload();// 实例化上传类
        $upload->maxSize   =     0 ;// 附件上传大小
        $upload->exts      =     array('jpg','gif','png','jpeg');// 附件上传类型
        $upload->rootPath  =     './ueditor/php/upload/image/'; // 附件上传目录
        $upload->saveName  =     'com_create_guid';// 采用GUID序列命名
        $info=$upload->upload();
        if(!$info){
            $this->error($upload->getError());
        }else{
            foreach($info as $file){
                $this->success($file['savepath'].$file['savename']."上传成功!",'',3);
            }
        }
        $model = M('File');
        $data['savename'] = $info[0]['savename'];
        $data['create_time'] = NOW_TIME;
        $model->add($data);
    }
最佳答案
评论( 相关
后面还有条评论,点击查看>>