• Thinkphp文件上传


    1.在IndexController.class.php里面写2个方法,shangchuan用来显示页面,upload是上传文件的方法。

    <?php
    namespace HomeController;
    use ThinkController;
    class IndexController extends Controller {
        public function shangchuan()
        {
            $this->display();
        }
        public function upload()
        {
            $upload = new ThinkUpload();// 实例化上传类
            $upload->maxSize   =     31457280 ;// 设置附件上传大小
            $upload->exts      =     array('jpg', 'gif', 'png', 'jpeg');// 设置附件上传类型
            $upload->autoSub  = true;
            $upload->subName  = array('date','Ymd');
            $upload->rootPath = "./Public/";//文件上传保存的根路径,下面的Upload文件夹放在这里面,./Public/Upload
            $upload->savePath  =      './Uploads/'; // 设置附件上传目录,文件上传上来以后放在了这个文件件里面。
            $info   =   $upload->upload();
            if(!$info) // 上传错误提示错误信息
            {
                $this->error($upload->getError());
            }
            else// 上传成功 获取上传文件信息
            {
                foreach($info as $file){        
                echo $file['savepath'].$file['savename'];    
                }
            }
        }
    }

    2.显示页面

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    </head>
    
    <body>
    <form action="__CONTROLLER__/upload" method="post" enctype="multipart/form-data">
        <input type="file" name="wenjian" />
        <input type="submit" value="提交" />
    
    </form>
    </body>
    </html>
  • 相关阅读:
    数据库多表查询,左连接(入门)
    让弹出层始终显示在屏幕正中间
    jq中的ajax合集总结
    ajax之$.getScript()
    Jquery遮罩ShowLoading组件
    jquery中prop()方法和attr()方法的区别
    Bootstrap 响应式实用工具
    VS使用技巧
    ubuntu下postgreSQL安装配置
    基础设施即代码(Infrastructure as Code)
  • 原文地址:https://www.cnblogs.com/Strive-count/p/6232746.html
Copyright © 2020-2023  润新知