首頁  >  文章  >  後端開發  >  如何實作php多檔案上傳封裝

如何實作php多檔案上傳封裝

伊谢尔伦
伊谢尔伦原創
2017-06-27 14:17:021499瀏覽

多重檔案的上傳實作

1 利用單一檔案封裝

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="doAction5.php" method="post" enctype="multipart/form-data">
请选择您要上传的文件:<input type="file" name="myFile1" /><br/>
请选择您要上传的文件:<input type="file" name="myFile2" /><br/>
请选择您要上传的文件:<input type="file" name="myFile3" /><br/>
请选择您要上传的文件:<input type="file" name="myFile4" /><br/>
<input type="submit" value="上传"/>
</form>
</body>
</html>
<?php
//print_r($_FILES);
header(&#39;content-type:text/html;charset=utf-8&#39;);
include_once &#39;upFunc.php&#39;;
foreach ($_FILES as $fileInfo){
    $file[]=uploadFile($fileInfo);
}

這裡的思路,從print_r($_FILES)去找,列印出來看到是個二維數組,很簡單,遍歷去用就好了! 

上面那個function的定義改一下,給定一些預設值

function uploadFile($fileInfo,$path="uploads",$allowExt=array(&#39;jpeg&#39;,&#39;jpg&#39;,&#39;png&#39;,&#39;tif&#39;),$maxSize=10485760){

這樣子,簡單是簡單,但遇到一些問題。

正常的上傳4張圖片是沒問題,但如果中間啟動了函數中的exit,就會立即停止,導致其他圖片也無法上傳。

2 升級版封裝

旨在實作針對多個或單一檔案上傳的封裝

#首先這樣子寫個靜態檔案

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="doAction5.php" method="post" enctype="multipart/form-data">
请选择您要上传的文件:<input type="file" name="myFile[]" /><br/>
请选择您要上传的文件:<input type="file" name="myFile[]" /><br/>
请选择您要上传的文件:<input type="file" name="myFile[]" /><br/>
请选择您要上传的文件:<input type="file" name="myFile[]" /><br/>
<input type="submit" value="上传"/>
</form>
</body>
</html>

印出$_FILES

Array
(
    [myFile] => Array
        (
            [name] => Array
                (
                    [0] => test32.png
                    [1] => test32.png
                    [2] => 333.png
                    [3] => test41.png
                )
            [type] => Array
                (
                    [0] => image/png
                    [1] => image/png
                    [2] => image/png
                    [3] => image/png
                )
            [tmp_name] => Array
                (
                    [0] => D:\wamp\tmp\php831C.tmp
                    [1] => D:\wamp\tmp\php834C.tmp
                    [2] => D:\wamp\tmp\php837C.tmp
                    [3] => D:\wamp\tmp\php83BB.tmp
                )
            [error] => Array
                (
                    [0] => 0
                    [1] => 0
                    [2] => 0
                    [3] => 0
                )
            [size] => Array
                (
                    [0] => 46174
                    [1] => 46174
                    [2] => 34196
                    [3] => 38514
                )
        )
)

可以得到一個三維陣列。

複雜是複雜了,但複雜的有規律,各項數值都在一起了,很方便我們取值! !

所以先得到檔案訊息,變成單一檔案處理那種訊息

function getFiles(){
    $i=0;
    foreach($_FILES as $file){
        if(is_string($file[&#39;name&#39;])){  //单文件判定
            $files[$i]=$file;
            $i++;
        }elseif(is_array($file[&#39;name&#39;])){
            foreach($file[&#39;name&#39;] as $key=>$val){  //我的天,这个$key用的diao
                $files[$i][&#39;name&#39;]=$file[&#39;name&#39;][$key];
                $files[$i][&#39;type&#39;]=$file[&#39;type&#39;][$key];
                $files[$i][&#39;tmp_name&#39;]=$file[&#39;tmp_name&#39;][$key];
                $files[$i][&#39;error&#39;]=$file[&#39;error&#39;][$key];
                $files[$i][&#39;size&#39;]=$file[&#39;size&#39;][$key];
                $i++;
            }
        }
    }
    return $files;
    
}

然後之前的那種exit錯誤,就把exit改一下就好了,這裡用res

function uploadFile($fileInfo,$path=&#39;./uploads&#39;,$flag=true,$maxSize=1048576,$allowExt=array(&#39;jpeg&#39;,&#39;jpg&#39;,&#39;png&#39;,&#39;gif&#39;)){
    //$flag=true;
    //$allowExt=array(&#39;jpeg&#39;,&#39;jpg&#39;,&#39;gif&#39;,&#39;png&#39;);
    //$maxSize=1048576;//1M
    //判断错误号
    $res=array();
    if($fileInfo[&#39;error&#39;]===UPLOAD_ERR_OK){
        //检测上传得到小
        if($fileInfo[&#39;size&#39;]>$maxSize){
            $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;上传文件过大&#39;;
        }
        $ext=getExt($fileInfo[&#39;name&#39;]);
        //检测上传文件的文件类型
        if(!in_array($ext,$allowExt)){
            $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;非法文件类型&#39;;
        }
        //检测是否是真实的图片类型
        if($flag){
            if(!getimagesize($fileInfo[&#39;tmp_name&#39;])){
                $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;不是真实图片类型&#39;;
            }
        }
        //检测文件是否是通过HTTP POST上传上来的
        if(!is_uploaded_file($fileInfo[&#39;tmp_name&#39;])){
            $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;文件不是通过HTTP POST方式上传上来的&#39;;
        }
        if($res) return $res;
        //$path=&#39;./uploads&#39;;
        if(!file_exists($path)){
            mkdir($path,0777,true);
            chmod($path,0777);
        }
        $uniName=getUniName();
        $destination=$path.&#39;/&#39;.$uniName.&#39;.&#39;.$ext;
        if(!move_uploaded_file($fileInfo[&#39;tmp_name&#39;],$destination)){
            $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;文件移动失败&#39;;
        }
        $res[&#39;mes&#39;]=$fileInfo[&#39;name&#39;].&#39;上传成功&#39;;
        $res[&#39;dest&#39;]=$destination;
        return $res;
        
    }else{
        //匹配错误信息
        switch ($fileInfo [&#39;error&#39;]) {
            case 1 :
                $res[&#39;mes&#39;] = &#39;上传文件超过了PHP配置文件中upload_max_filesize选项的值&#39;;
                break;
            case 2 :
                $res[&#39;mes&#39;] = &#39;超过了表单MAX_FILE_SIZE限制的大小&#39;;
                break;
            case 3 :
                $res[&#39;mes&#39;] = &#39;文件部分被上传&#39;;
                break;
            case 4 :
                $res[&#39;mes&#39;] = &#39;没有选择上传文件&#39;;
                break;
            case 6 :
                $res[&#39;mes&#39;] = &#39;没有找到临时目录&#39;;
                break;
            case 7 :
            case 8 :
                $res[&#39;mes&#39;] = &#39;系统错误&#39;;
                break;
        }
        return $res;
    }
}

裡面封裝了兩個小的

function getExt($filename){
    return strtolower(pathinfo($filename,PATHINFO_EXTENSION));
}
/**
 * 产生唯一字符串
 * @return string
 */
function getUniName(){
    return md5(uniqid(microtime(true),true));
}

然後靜態中,用multiple屬性實現多個文件的輸入;

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="doAction6.php" method="POST" enctype="multipart/form-data">
请选择您要上传的文件:<input type="file" name="myFile[]" multiple=&#39;multiple&#39; /><br/>
<input type="submit" value="上传"/>
</form>
</body>
</html>
<?php 
//print_r($_FILES);
header("content-type:text/html;charset=utf-8");
require_once &#39;upFunc2.php&#39;;
require_once &#39;common.func.php&#39;;
$files=getFiles();
// print_r($files);
foreach($files as $fileInfo){
    $res=uploadFile($fileInfo);
    echo $res[&#39;mes&#39;],&#39;<br/>&#39;;
    $uploadFiles[]=@$res[&#39;dest&#39;];
}
$uploadFiles=array_values(array_filter($uploadFiles));
//print_r($uploadFiles);

這樣子的幾個文件,就實現比較強大的過程導向的上傳檔案的功能。

以上是如何實作php多檔案上傳封裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn