PHP檔案上傳功能——多檔案上傳

來源:互聯網
上載者:User
這一節內容主要介紹PHP上傳檔案的多檔案上傳功能。只要以數組形式來命名表單中的檔案上傳標記,即可實現多個檔案同時上傳。

下面我們來看一個例子:
---------------------------------------------------------------------

<form enctype="multipart/form-data" action="<?=$_SERVER['PHP_SELF']?>" method="post">    <input type="hidden" name="MAX_FILE_SIZE" value="104857600" />    <table>        <tr>            <td>上傳檔案:<input name="upload_file[]" type="file" size="50" /></td>        </tr>        <tr>            <td>上傳檔案:<input name="upload_file[]" type="file" size="50" /></td>        </tr>        <tr>            <td>上傳檔案:<input name="upload_file[]" type="file" size="50" /></td>        </tr>        <tr>            <td>上傳檔案:<input name="upload_file[]" type="file" size="50" /></td>        </tr>        <tr>            <td><input type="submit" name="submit" value="上傳"/></td>        </tr>    </table></form><?php    function upload($file_error, $file_tmp_name, $file_name){        $info = "";        if($file_name == "")            return $info;        switch($file_error){            case UPLOAD_ERR_INI_SIZE:                $info = $file_name. ": 檔案大小超過了伺服器的限制";                break;            case UPLOAD_ERR_FORM_SIZE:                $info = $file_name. ": 檔案大小超過了瀏覽器的限制";                break;            case UPLOAD_ERR_PARTIAL:                $info = $file_name. ": 只上傳了部分檔案";                break;            case UPLOAD_ERR_NO_FILE:                $info = $file_name. ": 沒有檔案被上傳";                break;            case UPLOAD_ERR_NO_TMP_DIR:                $info = $file_name. ": 找不到臨時檔案夾";                break;            case UPLOAD_ERR_CANT_WRITE:                $info = $file_name. ": 檔案寫入失敗";                break;            case UPLOAD_ERR_OK:                $upload_dir = './'.iconv("UTF-8","gb2312",$file_name);                if(file_exists($upload_dir)){                    $info = $file_name.": 同名檔案已經存在";                }else{                    if(move_uploaded_file($file_tmp_name,$upload_dir)){                        $info = $file_name.": 檔案上傳成功";                    }else{                        $info = $file_name.": 檔案上傳失敗";                    }                }                break;        }        return $info;    }    if(isset($_POST['submit'])){        $info = '';        $count = count($_FILES['upload_file']['name']);        for($i=0; $i<$count; ++$i){            if($_FILES['upload_file']['name'][$i] == "")                continue;            $info = upload(                $_FILES['upload_file']['error'][$i],                $_FILES['upload_file']['tmp_name'][$i],                $_FILES['upload_file']['name'][$i]            );        }        echo $info;    }?>

--------------------------------------------------------------------------------------
代碼執行結果如下:


注意:

1、<input name="upload_file[]" type="file" size="50" />中, name="upload_file[]"一定要以數組形式命名,不然就會出現錯誤: “Uninitialized string offset: 0”,這句話的意思是你的數組key值越界了

2、$_FILES['upload_file']['name'][$i]中, upload_file是表單中上傳檔案標記符的名稱,多檔案上傳時,數組$_FILES的第三維下標會自動從0開始依次編號。

相關推薦:

PHP檔案上傳功能實現代碼分享

配置php.ini實現php檔案上傳功能

如何配置php.ini以實現PHP檔案上傳功能

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.