本文實例講述了PHP實現(xiàn)單文件、多個單文件、多文件上傳函數(shù)的封裝。分享給大家供大家參考,具體如下:
表單:
s.php
要在選擇上傳文件時能一次選擇多個文件,那么就加multiple="multiple"
,還有注意下name="myFile1"
和name="myFile[]"
的區(qū)別,單文件、多文件上傳.
!doctype html>
html>
head>
meta charset="utf-8">
title>無標題文檔/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){
//因為這時$_FILES是個三維數(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;
}
//針對于單文件、多個單文件、多文件的上傳
//默認允許上傳的文件只為圖片類型,并且只有這些圖片類型:$allowExt=array('jpeg','jpg','png','gif');并且檢查上傳的文件是否為真實的圖片$flag=true
//默認上傳保存的文件夾為本地的'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'].'非法文件類型';
}
//檢測是否是真實的圖片類型
if($flag){
if(!getimagesize($fileInfo['tmp_name'])){
$res['mes']=$fileInfo['name'].'不是真實圖片類型';
}
}
//檢測文件是否是通過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';
//如果沒有這個文件夾,那么就創(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選項的值';
break;
case 2:
$res['mes'] = '超過了HTML表單MAX_FILE_SIZE限制的大小';
break;
case 3:
$res['mes'] = '文件部分被上傳';
break;
case 4:
$res['mes'] = '沒有選擇上傳文件';
break;
case 6:
$res['mes'] = '沒有找到臨時目錄';
break;
case 7:
$res['mes'] = '文件寫入失敗';
break;
case 8:
$res['mes'] = '上傳的文件被PHP擴展程序中斷';
break;
}
return $res;
}
}
?>
common.ss.php
?php
//這兩函數(shù)也可以一起放到ss.php里面去
//得到文件擴展名
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',如果沒有這個文件夾,那么就創(chuàng)建一個
//'false'參數(shù):不要檢查上傳的文件是否為真實的圖片,因為要允許上傳除開圖片類型外的其他類型文件,如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é)果
?>
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php文件操作總結(jié)》、《PHP目錄操作技巧匯總》、《PHP常用遍歷算法與技巧總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計算法總結(jié)》及《PHP網(wǎng)絡(luò)編程技巧總結(jié)》
希望本文所述對大家PHP程序設(shè)計有所幫助。
您可能感興趣的文章:- PHP number_format函數(shù)原理及實例解析
- PHP array_reverse() 函數(shù)原理及實例解析
- PHP正則表達式函數(shù)preg_replace用法實例分析
- php判斷某個方法是否存在函數(shù)function_exists (),method_exists()與is_callable()區(qū)別與用法解析
- PHP函數(shù)參數(shù)傳遞的方式整理
- header函數(shù)設(shè)置響應(yīng)頭解決php跨域問題實例詳解
- PHP常用函數(shù)之獲取漢字首字母功能示例
- PHP vsprintf()函數(shù)格式化字符串操作原理解析