php 多檔案上傳的實現執行個體

來源:互聯網
上載者:User
首先向大家講解一下實現的方法。

要實現多檔案上傳,我們可以在form表單中添加多個input file域,然後將這些input file的name屬性設定為相同的名稱且使用數組的形式命名,例如filename[]。至於檔案上傳的php代碼和單個檔案上傳是一樣的道理。

下面看一個多檔案上傳的執行個體:

html檔案example.html

<!DOCTYPE html><html><head><meta charset="UTF-8"></head><body><form action="my_parser.php" method="post" enctype="multipart/form-data"> <p><input type="file" name="file_array[]"></p> <p><input type="file" name="file_array[]"></p> <p><input type="file" name="file_array[]"></p> <input type="submit" value="Upload all files"></form></body></html>

php檔案my_parser.php

<?phpif(isset($_FILES['file_array'])){  $name_array = $_FILES['file_array']['name'];  $tmp_name_array = $_FILES['file_array']['tmp_name'];  $type_array = $_FILES['file_array']['type'];  $size_array = $_FILES['file_array']['size'];  $error_array = $_FILES['file_array']['error'];  for($i = 0; $i < count($tmp_name_array); $i++){    if(move_uploaded_file($tmp_name_array[$i], "test_uploads/".$name_array[$i])){      echo $name_array[$i]." upload is complete<br>";    } else {      echo "move_uploaded_file function failed for ".$name_array[$i]."<br>";    }  }}?>

感謝閱讀,希望能協助到大家,謝謝大家對本站的支援!

更多php 多檔案上傳的實現執行個體相關文章請關注topic.alibabacloud.com!

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.