Yii-multifile Upload

Source: Internet
Author: User
Recently, I am working on a project with multiple file uploads. I came up with a short script. If you have a table that contains many local file fields/columns, you can use it. I don't know if this is the final solution, but it works well for me. Next let's start

Hello everyone,

Recently, I am working on a project with multiple file uploads. I came up with a short script. If you have a table that contains many local file fields/columns, you can use it. I don't know if this is the final solution, but it works well for me. Next let's start

In the controller, you need to call the myFileHandler method that only contains the file upload field.

So he will be

public function actionIndex(){ ................ $model = $this->myFileHandler($model, array('logo','emailus_img','emailus_img_hover','more_img','more_img_hover','gomo_logo','mobile_phone_img','animate_on_mobile_img','animate_above_text_img','animate_under_text_img','bottom_right_img')); .............. }
public function myFileHandler($model, $imgFieldNameArr){ foreach($imgFieldNameArr as $attribute){ $instance = CUploadedFile::getInstance($model, $attribute); if($instance){ $fullImgName = time().'_'.$attribute.'.'.$instance->getExtensionName(); $fullImgSource = Yii::getPathOfAlias('webroot').'/media/images/'.$fullImgName; $instance->saveAs($fullImgSource); $model->$attribute = $fullImgName; } } return $model; //return model with updated file path }

I hope this tips will help you.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.