码迷,mamicode.com
首页 > Web开发 > 详细

文件上传

时间:2015-12-01 10:58:50      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

模板程序:

<form action="{:U(‘Index/upload‘)}" enctype=‘multipart/form-data‘ method=‘post‘>
        <input type="file" name=‘photo‘>
        <input type="submit" value=‘提交‘>
    </form>

php程序:

public function upload(){
        $upload=new \Think\Upload();
        $upload->maxSize=3145728;
        $upload->exts=array(‘jpg‘,‘gif‘,‘png‘,‘jpeg‘,‘bmp‘,‘xlsx‘,‘docx‘,‘pdf‘,‘rar‘,‘zip‘);
        $upload->rootPath=‘./Uploads/‘;
        $upload->savePath=‘‘;
        if ($upload->upload()) {
            $this->success(‘上传成功‘);
        }else{
            $this->error($upload->getError());
        }
    }

完成!

文件上传

标签:

原文地址:http://www.cnblogs.com/hltswd/p/5009417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!