CodeIgniter多个图像上传和调整大小

时间:2015-03-06 11:54:45

标签: php codeigniter

因为我是PHP的初学者,所以即使在教程的帮助下我也面临困难。 我的代码上传了多张图片,但只重新调整了第一张图片的大小,其余图片与上传时保持一致。 我试过unset和clear()但问题是一样的。 如果有人帮我解决这个问题,我将非常感激。

function do_upload()
    {    
        $files = $_FILES;    
        $cpt = count($_FILES['userfile']['name']);

        for($i=0; $i<$cpt; $i++)
        {

            $_FILES['userfile']['name']= $files['userfile']['name'][$i];
            $_FILES['userfile']['type']= $files['userfile']['type'][$i];
            $_FILES['userfile']['tmp_name']= $files['userfile']['tmp_name'][$i];
            $_FILES['userfile']['error']= $files['userfile']['error'][$i];
            $_FILES['userfile']['size']= $files['userfile']['size'][$i];

            $config['upload_path'] = './uploads/';
            $config['allowed_types'] = 'gif|jpg|png';
            $config['max_size']    = '2000';
            $config['max_width']   = '1024';
            $config['max_height']  = '768';

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

            if ( ! $this->upload->do_upload())
            {
                $error = array('error' => $this->upload->display_errors());    
                $this->load->view('upload_form', $error);
            }
            else
            {
                $data = array('upload_data' => $this->upload->data());    
                $path=$data['upload_data']['full_path'];
                $q['name']=$data['upload_data']['file_name'];

                 $configi['image_library'] = 'gd2';
                 $configi['source_image']   = $path;
                 $configi['maintain_ratio'] = TRUE;
                 $configi['width']  = 75;
                 $configi['height'] = 50;

                $this->load->library('image_lib', $configi);    
                $this->image_lib->resize();

                $this -> load -> view('upload_success', $q);
                unset($configi);
                $this->load->library('image_lib');
                $this->image_lib->clear(); }}}

1 个答案:

答案 0 :(得分:1)

在最近6行,我使用了

$this->load->library('image_lib', $configi);

但是当我们使用$ configi在循环中加载库时,它会在第一次循环执行时立即生成。要在每个循环增量上使用新值,我们应该单独执行它们,如:

$this->load->library('image_lib');
$this->image_lib->initialize($configi);

并使用这种方式$ configi在循环中的每个增量处获取新值。