CodeIgniter图像上传(将空白插入数组)

时间:2012-09-06 17:02:26

标签: php image codeigniter file-upload

我正在使用的表单包含五个人的信息。可选地,用户可以为五个人中的每一个上传照片。我正在尝试将默认图像插入到未上传图像的结果数组$文件中。非常感谢帮助。

function multiple_upload($upload_dir = APPPATH, $config = array())
{
    $CI =& get_instance();
    $files = array();

    if(empty($config))
    {
        $config['upload_path']   = realpath($upload_dir . '/uploads');
        $config['allowed_types'] = 'gif|jpg|jpeg|jpe|png';
        $config['max_size']      = '2048';
    }

    $CI->load->library('upload', $config);

    $errors = FALSE;
    $this->load->library('image_lib');  // moved outside loop so it'll work
    foreach($_FILES as $key => $value)
    {
        if( ! empty($value['name']))
        {
            if( ! $CI->upload->do_upload($key))
            {
                $data['upload_message'] = $CI->upload->display_errors(ERR_OPEN, ERR_CLOSE); // ERR_OPEN and ERR_CLOSE are error delimiters defined in a config file
                $CI->load->vars($data);

                $errors = TRUE;
            }
            else
            {

                // resize the saved image
                $path = $CI->upload->data('full_path');
                //echo $path['full_path'] . "<Br/>";
                $config = array(
                    'source_image' => $path['full_path'],
                    'new_image' => $upload_dir . 'uploads/thumbs',
                    'maintain_ration' => true,
                    'width' => 150,
                    'height' => 150
                );

                $this->image_lib->initialize($config);
                $this->image_lib->resize();
                // Build a file array from all uploaded files
                $files[] = $CI->upload->data();


            }
        }
    }

    // There was errors, we have to delete the uploaded files
    if($errors)
    {
        foreach($files as $key => $file)
        {
            @unlink($file['full_path']);
        }
    }
    elseif(empty($files) AND empty($data['upload_message']))
    {
        $CI->lang->load('upload');
        $data['upload_message'] = ERR_OPEN.$CI->lang->line('upload_no_file_selected').ERR_CLOSE;
        $CI->load->vars($data);
    }
    else
    {

        return $files;

    }

}

1 个答案:

答案 0 :(得分:0)

验证上传的文件后,检查可能会更容易。

例如:初始化一个包含五个空元素的数组,每个图片一个,然后对于每个上传的文件,将其文件名设置为相应的数组元素。完成后,只需运行任何空元素,只需将文件(或文件路径)粘贴到默认图像即可。

这样,您可以将文件上传和验证尽可能保持为vanilla,并单独处理页面的业务逻辑。