您好,登錄后才能下訂單哦!
使用ThinkPHP怎么對文件進(jìn)行上傳?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
一、action部分:
FileAction.class.php頁面代碼如下:
<?php class FileAction extends Action{ function index(){ $file=M('file'); $list=$file->select(); $this->assign('filelist',$list); $this->display(); } function upload(){ //文件上傳地址提交給他,并且上傳完成之后返回一個信息,讓其寫入數(shù)據(jù)庫 if(empty($_FILES)){ $this->error('必須選擇上傳文件'); }else{ $a=$this->up(); if(isset($a)){ //寫入數(shù)據(jù)庫的自定義c方法 if($this->c($a)){ $this->success('上傳成功'); } else{ $this->error('寫入數(shù)據(jù)庫失敗'); } }else{ $this-error('上傳文件異常,請與系統(tǒng)管理員聯(lián)系'); } } } private function c($data){ $file=M('file'); $num = '0'; for($i = 0; $i < count($data)-1; $i++) { $data['filename']=$data[$i]['savename']; if( $file->data($data)->add()) { $num++; } } if($num==count($data)-1) { return true; }else { return false; } } private function up(){ //完成與thinkphp相關(guān)的,文件上傳類的調(diào)用 import('@.Org.UploadFile');//將上傳類UploadFile.class.php拷到Lib/Org文件夾下 $upload=new UploadFile(); $upload->maxSize='1000000';//默認(rèn)為-1,不限制上傳大小 $upload->savePath='./Public/Upload/';//保存路徑建議與主文件平級目錄或者平級目錄的子目錄來保存 $upload->saveRule=uniqid;//上傳文件的文件名保存規(guī)則 $upload->uploadReplace=true;//如果存在同名文件是否進(jìn)行覆蓋 $upload->allowExts=array('jpg','jpeg','png','gif');//準(zhǔn)許上傳的文件類型 $upload->allowTypes=array('image/png','image/jpg','image/jpeg','image/gif');//檢測mime類型 $upload->thumb=true;//是否開啟圖片文件縮略圖 $upload->thumbMaxWidth='300,500'; $upload->thumbMaxHeight='200,400'; $upload->thumbPrefix='s_,m_';//縮略圖文件前綴 $upload->thumbRemoveOrigin=1;//如果生成縮略圖,是否刪除原圖 if($upload->upload()){ $info=$upload->getUploadFileInfo(); return $info; }else{ $this->error($upload->getErrorMsg());//專門用來獲取上傳的錯誤信息的 } } } ?>
二、view模板部分:
模板文件index.html代碼如下:
<html> <body> <volist name="filelist" id="vo"> 小圖:<img src="__PUBLIC__/upload/s_{$vo['filename']}" /><br /> 大圖:<img src="__PUBLIC__/upload/m_{$vo['filename']}" /><br /> </volist> <form action="__URL__/upload" method="post" enctype="multipart/form-data"> <input type="file" name="file[]" /><br /> <input type="file" name="file[]" /><br /> <input type="file" name="file[]" /><br /> <input type="submit" value="上傳" /> </form> </body> </html>
關(guān)于使用ThinkPHP怎么對文件進(jìn)行上傳問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。