本文實(shí)例講述了PHP實(shí)現(xiàn)單文件、多個(gè)單文件、多文件上傳函數(shù)的封裝。分享給大家供大家參考,具體如下:
創(chuàng)新互聯(lián)長期為上1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為東至企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、成都做網(wǎng)站,東至網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。表單:
s.php
要在選擇上傳文件時(shí)能一次選擇多個(gè)文件,那么就加multiple="multiple"
,還有注意下name="myFile1"
和name="myFile[]"
的區(qū)別,單文件、多文件上傳.
<!doctype html> <html> <head> <meta charset="utf-8"> <title>無標(biāo)題文檔</title> </head> <body> <form action="sss.php" method="post" enctype="multipart/form-data"> <input type="file" name="myFile1" /><br/> <input type="file" name="myFile2" /><br/> <input type="file" name="myFile[]" /><br/> <input type="file" name="myFile[]" /><br/> <input type="file" name="myFile[]" multiple="multiple"/><br/> <input type="submit" value="上傳文件"/> </form> </body> </html>
上傳函數(shù)的封裝:
ss.php
<?php header('Content-Type:text/html;charset=utf-8'); //構(gòu)建上傳文件信息 function getFiles(){ $i=0; foreach($_FILES as $file){ //因?yàn)檫@時(shí)$_FILES是個(gè)三維數(shù)組,并且上傳單文件或多文件時(shí),數(shù)組的第一維的類型不同,這樣就可以拿來判斷上傳的是單文件還是多文件 if(is_string($file['name'])){ //如果是單文件 $files[$i]=$file; $i++; }elseif(is_array($file['name'])){ //如果是多文件 foreach($file['name'] as $key=>$val){ $files[$i]['name']=$file['name'][$key]; $files[$i]['type']=$file['type'][$key]; $files[$i]['tmp_name']=$file['tmp_name'][$key]; $files[$i]['error']=$file['error'][$key]; $files[$i]['size']=$file['size'][$key]; $i++; } } } return $files; } //針對于單文件、多個(gè)單文件、多文件的上傳 //默認(rèn)允許上傳的文件只為圖片類型,并且只有這些圖片類型:$allowExt=array('jpeg','jpg','png','gif');并且檢查上傳的文件是否為真實(shí)的圖片$flag=true //默認(rèn)上傳保存的文件夾為本地的'uploads'文件夾,允許上傳文件的大小為2M function uploadFile($fileInfo,$path='./uploads',$flag=true,$allowExt=array('jpeg','jpg','png','gif'),$maxSize=2097152){ //判斷錯誤號 if($fileInfo['error']===UPLOAD_ERR_OK){ //檢測上傳文件的大小 if($fileInfo['size']>$maxSize){ $res['mes']=$fileInfo['name'].'上傳文件過大'; } $ext=getExt($fileInfo['name']); //檢測上傳文件的文件類型 if(!in_array($ext,$allowExt)){ $res['mes']=$fileInfo['name'].'非法文件類型'; } //檢測是否是真實(shí)的圖片類型 if($flag){ if(!getimagesize($fileInfo['tmp_name'])){ $res['mes']=$fileInfo['name'].'不是真實(shí)圖片類型'; } } //檢測文件是否是通過HTTP POST上傳上來的 if(!is_uploaded_file($fileInfo['tmp_name'])){ $res['mes']=$fileInfo['name'].'文件不是通過HTTP POST方式上傳上來的'; } if( $res ) return $res; //如果要不顯示錯誤信息的話,用if( @$res ) return $res; //$path='./uploads'; //如果沒有這個(gè)文件夾,那么就創(chuàng)建一 if(!file_exists($path)){ mkdir($path,0777,true); chmod($path,0777); } //新文件名唯一 $uniName=getUniName(); $destination=$path.'/'.$uniName.'.'.$ext; //@符號是為了不讓客戶看到錯誤信,也可以刪除 if(!@move_uploaded_file($fileInfo['tmp_name'],$destination)){ $res['mes']=$fileInfo['name'].'文件移動失敗'; } $res['mes']=$fileInfo['name'].'上傳成功'; $res['dest']=$destination; return $res; }else{ //匹配錯誤信息 //注意!錯誤信息沒有5 switch($fileInfo['error']){ case 1: $res['mes'] = '上傳文件超過了PHP配置文件中upload_max_filesize選項(xiàng)的值'; break; case 2: $res['mes'] = '超過了HTML表單MAX_FILE_SIZE限制的大小'; break; case 3: $res['mes'] = '文件部分被上傳'; break; case 4: $res['mes'] = '沒有選擇上傳文件'; break; case 6: $res['mes'] = '沒有找到臨時(shí)目錄'; break; case 7: $res['mes'] = '文件寫入失敗'; break; case 8: $res['mes'] = '上傳的文件被PHP擴(kuò)展程序中斷'; break; } return $res; } } ?>
common.ss.php
<?php //這兩函數(shù)也可以一起放到ss.php里面去 //得到文件擴(kuò)展名 function getExt($filename){ return strtolower(pathinfo($filename,PATHINFO_EXTENSION)); } //產(chǎn)生唯一字符串 function getUniName(){ return md5(uniqid(microtime(true),true)); } ?>
上傳后文件的操作:
<?php header("content-type:text/html;charset=utf-8"); require_once 'ss.php'; require_once 'common.ss.php'; $files=getFiles(); //修改允許上傳文件的類型,為('jpeg','jpg','png','gif','html','txt'),也可以增加新的,如pdf,pptx等等 $allowExt=array('jpeg','jpg','png','gif','html','txt'); foreach($files as $fileInfo){ //修改上傳保存的文件夾為本地的'imooc',如果沒有這個(gè)文件夾,那么就創(chuàng)建一個(gè) //'false'參數(shù):不要檢查上傳的文件是否為真實(shí)的圖片,因?yàn)橐试S上傳除開圖片類型外的其他類型文件,如html、txt $res=uploadFile($fileInfo,'imooc',false,$allowExt); echo $res['mes'],'<br/>'; $uploadFiles[]=$res['dest'];//如果要不顯示錯誤信息的話,用@$uploadFiles[]=$res['dest']; } $uploadFiles=array_values(array_filter($uploadFiles));//這樣便于保存到數(shù)據(jù)庫 print_r($uploadFiles);//打印查看上傳保存的結(jié)果 ?>
分享標(biāo)題:示例PHP實(shí)現(xiàn)單文件、多個(gè)單文件、多文件上傳函數(shù)的封裝
分享地址:http://www.rwnh.cn/article40/cjooho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、網(wǎng)站維護(hù)、ChatGPT、外貿(mào)建站、微信小程序、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)