phpbar.de logo

Mailinglisten-Archive

[php] foreach($_FILES)

[php] foreach($_FILES)

Michael Borchers list at tridemail.de
Mon Feb 20 15:53:22 CET 2006


habe zb 2 dateien hochgeladen via:
<input type="file" name="files[]" id="files[]" />
<input type="file" name="files[]" id="files[]" />

oder auch
<input type="file" name="files[0]" id="files[0]" />
<input type="file" name="files[1]" id="files[1]" />


aber die array formatierung die ich erhalte ist diese:
 foreach($_FILES as $files)
 {
  array_list($files);
 }

=> ergibt:
Array
(
    [name] => Array
        (
            [0] => test.txt
            [1] => test.zip
        )

    [type] => Array
        (
            [0] => text/plain
            [1] => application/x-zip-compressed
        )

    [tmp_name] => Array
        (
            [0] => /tmp/phptzaW9j
            [1] => /tmp/php8JNWfu
        )

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

    [size] => Array
        (
            [0] => 6
            [1] => 120
        )

)


wie kriege ich es vernünftig in zwei verschiedene arrays,
sprich

Array[0]
{
    type, name, ...
}

Array[1]
{
    type, name, ...
}

?!

php::bar PHP Wiki   -   Listenarchive