먼저 구현 방법에 대해 설명드리겠습니다.
여러 파일 업로드를 구현하려면 양식에 여러 입력 파일 필드를 추가한 다음 이러한 입력 파일의 이름 속성을 동일한 이름으로 설정하고 파일 이름[]과 같은 배열 형식으로 이름을 지정할 수 있습니다. 파일 업로드를 위한 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
<?php if(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>"; } } } ?>
읽어주셔서 감사합니다. 도움이 되기를 바랍니다. 이 사이트를 지원해 주셔서 감사합니다!