PHP - 上传多个图像

时间:2011-10-10 12:25:52

标签: php html

我需要通过表单上传多张图片。我以为我会毫无问题地做到这一点,但我有一个。

当我尝试做foreach并按图像获取图像时,它的表现并不像我希望的那样。

HTML

<form method="post" action="" enctype="multipart/form-data" id="frmImgUpload">
    <input name="fileImage[]" type="file" multiple="true" />
    <br />
    <input name="btnSubmit" type="submit" value="Upload" />
</form>

PHP

<?php
if ($_POST)
{
    echo "<pre>";
    foreach ($_FILES['fileImage'] as $file)
    {
        print_r($file);
        die(); // I want it to print first image content and then die to test this out...
        //imgUpload($file) - I already have working function that uploads one image
    }
}

我期望从中打印出第一张图片,而不是打印所有图像的名称。

实施例

Array
(
    [0] => 002.jpg
    [1] => 003.jpg
    [2] => 004.jpg
    [3] => 005.jpg
)

我希望它输出

Array
(
    [name] => 002.jpg
    [type] => image/jpeg
    [tmp_name] => php68A5.tmp
    [error] => 0
    [size] => 359227
)

那么如何在循环中逐个图像选择图像,以便我可以全部上传呢?

Okey我找到了解决方案,这就是我做的方式,可能不是最好的方式,但它有效。

foreach ($_FILES['fileImage']['name'] as $f)
{
    $file['name'] = $_FILES['fileImage']['name'][$i];
    $file['type'] = $_FILES['fileImage']['type'][$i];
    $file['tmp_name'] = $_FILES['fileImage']['tmp_name'][$i];
    $file['error'] = $_FILES['fileImage']['error'][$i];
    $file['size'] = $_FILES['fileImage']['size'][$i];
    imgUpload($file);
    $i++;
}

2 个答案:

答案 0 :(得分:3)

该数组以另一种方式形成

这就是这个问题:

array ( 
    'name' => array (
       [0] => 'yourimagename',
       [1] => 'yourimagename2',
       ....
    ),
    'tmp_file' => array (
    ....
应该这样做:

foreach ($_FILES['fileImage']['name'] as $file)
    {
        print_r($file);
        die(); // I want it to print first image content and then die to test this out...
        //imgUpload($file) - I already have working function that uploads one image
    }

答案 1 :(得分:1)

您基本上是在询问如何重建$_FILES数组以将它们的子项作为一个数组进行访问。

$index = 0;
$field = 'fileImage';
$keys = array_keys($_FILES[$field]);
$file = array();
foreach($keys as $key)
{
    $file[$key] = $_FILES[$field][$key][$index];
}
print_r($file);

$index更改为选择特定文件所需的值。