Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie füge ich mehrere Bilder ein und lade sie in PHP hoch?

Bitte schauen Sie sich an, wie Sie alles über den Mehrfach-Upload erfahren können http:// php.net/manual/en/features.file-upload.multiple.php

Siehe Beispiel unten

<?php 
print_r($_FILES);
?>
<form action="" method="post" enctype="multipart/form-data">
  Send these files:<br />
  <input name="userfile[]" type="file" /><br />
  <input name="userfile[]" type="file" /><br />
  <input type="submit" value="Send files" />
</form>

Siehe Ergebnis unten

Array
(
    [userfile] => Array
        (
            [name] => Array
                (
                    [0] => cancelled booking - PAYG.png
                    [1] => cancelled booking - PAYG.png
                )

            [type] => Array
                (
                    [0] => image/png
                    [1] => image/png
                )

            [tmp_name] => Array
                (
                    [0] => C:\xampp\tmp\php402A.tmp
                    [1] => C:\xampp\tmp\php402B.tmp
                )

            [error] => Array
                (
                    [0] => 0
                    [1] => 0
                )

            [size] => Array
                (
                    [0] => 99134
                    [1] => 99134
                )

        )

)

Für Ihre Frage gilt Folgendes:

<?php 
foreach ($_FILES['userfile'] as $position => $file){
    print_r($file);

}

?>

Wenn Ergebnis dafür siehe unten :

Array
(
    [0] => cancelled booking - PAYG.png
    [1] => cancelled booking - PAYG.png
)
Array
(
    [0] => image/png
    [1] => image/png
)
Array
(
    [0] => C:\xampp\tmp\php284D.tmp
    [1] => C:\xampp\tmp\php284E.tmp
)
Array
(
    [0] => 0
    [1] => 0
)
Array
(
    [0] => 99134
    [1] => 99134
)

Jetzt können Sie also verstehen,

Danke Pratik