溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

thinkphp之文件上傳的示例

發(fā)布時(shí)間:2021-01-29 15:35:52 來源:億速云 閱讀:197 作者:小新 欄目:編程語言

小編給大家分享一下thinkphp之文件上傳的示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

tp5的文件上傳,具體代碼詳情如下:

模板頁(一定要加上enctype="multipart/form-data"):

 <form action="{:url('index/index/upQuestionsWrite')}" method="post" class="form form-horizontal" enctype="multipart/form-data" id="addform">    
        <div class="row cl">  
        <label class="form-label col-xs-4 col-sm-2">選擇試題文件:</label>  
        <div class="btn-upload form-group">  
            <input type="text" name="uploadfile" id="uploadfile" class="input-text upload-url radius" readonly><a href="javascript:void();" class="btn btn-primary radius"><i class="Hui-iconfont"></i>瀏覽文件</a>  
            <input type="file" name="examfile" class="input-file" multiple>                 
        </div>      
        <boutton type="submit" class="btn btn-success btn-submit">導(dǎo)入試題</button>  
        </div>      
    </form>

控制器(在tp5中獲取上傳文件的文件名稱與tp3略有不同):

public function upQuestionsWrite()  
    {  
        // 獲取表單上傳文件  
        $file = request()->file('examfile');  
        if(empty($file)) {  
            $this->error('請選擇上傳文件');  
        }  
        // 移動(dòng)到框架應(yīng)用根目錄/public/uploads/ 目錄下  
        $info = $file->move(ROOT_PATH.'public'.DS.'upload'); 
        //如果不清楚文件上傳的具體鍵名,可以直接打印$info來查看  
        //獲取文件(文件名),$info->getFilename()  ***********不同之處,筆記筆記哦
        //獲取文件(日期/文件名),$info->getSaveName()  **********不同之處,筆記筆記哦
        $filename = $info->getSaveName();  //在測試的時(shí)候也可以直接打印文件名稱來查看 
        if($filename){              
            $this->success('文件上傳成功!');  
        }else{  
            // 上傳失敗獲取錯(cuò)誤信息  
            $this->error($file->getError());  
        }  
    }     
            // 上傳失敗獲取錯(cuò)誤信息    
            $this->error($file->getError());    
        }    
    }

看完了這篇文章,相信你對(duì)“thinkphp之文件上傳的示例”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI