CakePhp上传多个图片

时间:2015-03-24 21:18:36

标签: php cakephp image-uploading

我正在尝试保存从表单接收的多输入文件。但结构不是我所期望的......这是结构:

Array
(
    [files] => Array
        (
            [name] => Array
                (
                    [0] => 25th birthday.PNG
                    [1] => 1535UDEM-info-2011.jpg
                    [2] => 2012-06-11 14.49.48.jpg
                    [3] => 
                )

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

            [tmp_name] => Array
                (
                    [0] => /tmp/php0GW7d6
                    [1] => /tmp/phpwzS0DO
                    [2] => /tmp/phpMifC4w
                    [3] => 
                )

            [error] => Array
                (
                    [0] => 0
                    [1] => 0
                    [2] => 0
                    [3] => 4
                )

            [size] => Array
                (
                    [0] => 159487
                    [1] => 528765
                    [2] => 822193
                    [3] => 0
                )

        )

)

cakephp可以保存这种类型的数组吗?如果是这样,怎么样?我使用http://cakephp-upload.readthedocs.org这个插件上传图片。我想我必须一个一个地保存,但我不知道该怎么做。我试图用这段代码重命名每个图像:

foreach ($imageFiles['name'] as $key => $value) {
    if(!empty($value))
    {
        $file = $imageFiles['url']; //put the data into a var for easy use
        $ext = substr(strtolower(strrchr($file['name'], '.')), 1); //get the extension
        $randomCode = substr(md5(uniqid(rand(), true)), 5, 5);
        $imageFiles['url']['name'] = date('Y-m-d')."_".$randomCode.".".$ext;
    } else {
        $imageFiles['url'] = "";
    }

}

有人可以就如何做到这一点给我建议吗?

2 个答案:

答案 0 :(得分:3)

  

但结构不是我的预期

你期待什么? “正常”结构?你需要对数组进行规范化,除了规范化之外,还可以使它更容易使用它,你可以只做一个foreach并以相同的方式保存每个文件,无论是否存在一个或多个。

请参阅https://github.com/burzum/cakephp-file-storage/blob/3.0/src/Lib/FileStorageUtils.php

/**
 * Method to normalize the annoying inconsistency of the $_FILE array structure
 *
 * @link http://www.php.net/manual/en/features.file-upload.multiple.php#109437
 * @param array $array
 * @return array Empty array if $_FILE is empty, if not normalize array of Filedata.{n}
 */
    public static function normalizeGlobalFilesArray($array = null) {
        if (empty($array)) {
            $array = $_FILES;
        }
        $newfiles = array();
        if (!empty($array)) {
            foreach ($array as $fieldname => $fieldvalue) {
                foreach ($fieldvalue as $paramname => $paramvalue) {
                    foreach ((array)$paramvalue as $index => $value) {
                        $newfiles[$fieldname][$index][$paramname] = $value;
                    }
                }
            }
        }
        return $newfiles;
    }

答案 1 :(得分:-1)

上传图片或文件的更好解决方案是Dropzone.js。它非常好用且易于使用,还包括用于上传的PHP。