Table of Contents
回复内容:
Home Backend Development PHP Tutorial Yii如何使用model来上传多个文件

Yii如何使用model来上传多个文件

Jun 06, 2016 pm 08:45 PM
php yii

我以前是使用CFormModel来上传图片(单张)。比如RegisterForm来注册用户上传照片并使用缩略图:

<br><?php
class RegisterForm extends CFormModel
{
    public $email;
    public $password;
    public $gender;
    public $homeland;
    public $iemi;
    public $registerDate;
    public $wentWhere;
    public $birthday;
    public $avatar; //头像,其最终结果应该是存储的Url
    public $thumb;//缩略图
    private $_identity;
    public function rules()
    {
        return array(

            array('email', 'required'),
            array('email','email','message'=>'email的格式不合法'),
            array('password', 'required'),
            array('gender','in','range'=>array(0,1)),
            array('homeland','required','message'=>'家乡必填,而且不容易更改'),
            array ('homeland','validateHome'),
            array('imei','required','message'=>'imei必填'),
            array('birthday','required','message'=>'birthday必填'),
            array('avatar','file','message'=>'必须设置一个头像')
        );
    }

    /**
     * Declares attribute labels.
     */
    public function attributeLabels()
    {
        return array(
            'email'=>'用户名/邮箱/手机号/漫游号',
            'password'=>'密码',
            'gender'=>'性别',
            ''
        );
    }

    /**
     * Authenticates the password.
     * This is the 'authenticate' validator as declared in rules().
     */
    public function authenticate($attribute,$params)
    {
        if(!$this->hasErrors())
        {
            $this->_identity=new UserIdentity($this->username,$this->password);
            if(!$this->_identity->authenticate())
                $this->addError('password','Incorrect username or password.');
        }
    }

    /**
     *     验证家乡是否合法。扩展到地级市
     *
     *
     */
    public   function validateHome(){

          $this->homeland;


          $this->addError('homeland','家乡不合法啊');



            }
    /**
     * Logs in the user using the given username and password in the model.
     * @return boolean whether login is successful
     */
    public function login()
    {
        if($this->_identity===null)
        {
            $this->_identity=new UserIdentity($this->username,$this->password);


            $this->_identity->setPersistentStates(array());
            $this->_identity->authenticate();
        }
        if($this->_identity->errorCode===UserIdentity::ERROR_NONE)
        {
            $duration=3600*24*10; // 10 days

            Yii::app()->user->login($this->_identity,$duration);
            return true;
        }
        else
            return false;
    }
}
Copy after login
Copy after login

然后在Controller里面:

public function  actionRegister()
    {
        $registerForm = new RegisterForm();
        if (isset($_POST['RegisterForm'])) {
            $registerForm->attributes = $_POST['RegisterForm'];
            $registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
            if ($registerForm->avatar) {
                $preRand = time() . mt_rand(0, 99999);
                $imageName='img_big'.$preRand.$registerForm->avatar->extensionName;
                $registerForm->avatar->saveAs('uploads/' . $imageName);
                $registerForm->avatar = $imageName;
            }
            $path = dirname(Yii::app()->BasePath) . '/uploads/';
            $thumb = Yii::app()->thumb; //与 $thumb=new Cthumb()有什么区别?
            $thumb->image = $path . 'img_small' . $preRand . $registerForm->avatar->extensionName;
            $thumb->width = 130;
            $thumb->height = 95;
            $thumb->mode = 4;
            $thumb->directory = $path;
            $thumb->defaultName = $preRand;
            $thumb->createThumb();
            $thumb->save();
            $registerForm->thumb = $thumb->image;
            $registerForm->registerDate = time();
//save方法会自动验证
            if ($registerForm->save() && $registerForm->login()) {
                Yii::app()->db->getLastInsertID(); //取得插入的Id。但是
            }

        }
Copy after login
Copy after login

上传的时候主要是这里:

$registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
Copy after login
Copy after login

但是现在遇到了一个问题。就是$registerForm继承了CFormModel,这个save方法是CActiveRecord的,为什么save方法就调用了呢?

此外,如果我要多文件上传,是不是

$file1=CUploadedFile::getInstance($registerForm, 'file1');
$file2=CUploadedFile::getInstance($registerForm, 'file2');
Copy after login
Copy after login

就可以了?

回复内容:

我以前是使用CFormModel来上传图片(单张)。比如RegisterForm来注册用户上传照片并使用缩略图:

<br><?php
class RegisterForm extends CFormModel
{
    public $email;
    public $password;
    public $gender;
    public $homeland;
    public $iemi;
    public $registerDate;
    public $wentWhere;
    public $birthday;
    public $avatar; //头像,其最终结果应该是存储的Url
    public $thumb;//缩略图
    private $_identity;
    public function rules()
    {
        return array(

            array('email', 'required'),
            array('email','email','message'=>'email的格式不合法'),
            array('password', 'required'),
            array('gender','in','range'=>array(0,1)),
            array('homeland','required','message'=>'家乡必填,而且不容易更改'),
            array ('homeland','validateHome'),
            array('imei','required','message'=>'imei必填'),
            array('birthday','required','message'=>'birthday必填'),
            array('avatar','file','message'=>'必须设置一个头像')
        );
    }

    /**
     * Declares attribute labels.
     */
    public function attributeLabels()
    {
        return array(
            'email'=>'用户名/邮箱/手机号/漫游号',
            'password'=>'密码',
            'gender'=>'性别',
            ''
        );
    }

    /**
     * Authenticates the password.
     * This is the 'authenticate' validator as declared in rules().
     */
    public function authenticate($attribute,$params)
    {
        if(!$this->hasErrors())
        {
            $this->_identity=new UserIdentity($this->username,$this->password);
            if(!$this->_identity->authenticate())
                $this->addError('password','Incorrect username or password.');
        }
    }

    /**
     *     验证家乡是否合法。扩展到地级市
     *
     *
     */
    public   function validateHome(){

          $this->homeland;


          $this->addError('homeland','家乡不合法啊');



            }
    /**
     * Logs in the user using the given username and password in the model.
     * @return boolean whether login is successful
     */
    public function login()
    {
        if($this->_identity===null)
        {
            $this->_identity=new UserIdentity($this->username,$this->password);


            $this->_identity->setPersistentStates(array());
            $this->_identity->authenticate();
        }
        if($this->_identity->errorCode===UserIdentity::ERROR_NONE)
        {
            $duration=3600*24*10; // 10 days

            Yii::app()->user->login($this->_identity,$duration);
            return true;
        }
        else
            return false;
    }
}
Copy after login
Copy after login

然后在Controller里面:

public function  actionRegister()
    {
        $registerForm = new RegisterForm();
        if (isset($_POST['RegisterForm'])) {
            $registerForm->attributes = $_POST['RegisterForm'];
            $registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
            if ($registerForm->avatar) {
                $preRand = time() . mt_rand(0, 99999);
                $imageName='img_big'.$preRand.$registerForm->avatar->extensionName;
                $registerForm->avatar->saveAs('uploads/' . $imageName);
                $registerForm->avatar = $imageName;
            }
            $path = dirname(Yii::app()->BasePath) . '/uploads/';
            $thumb = Yii::app()->thumb; //与 $thumb=new Cthumb()有什么区别?
            $thumb->image = $path . 'img_small' . $preRand . $registerForm->avatar->extensionName;
            $thumb->width = 130;
            $thumb->height = 95;
            $thumb->mode = 4;
            $thumb->directory = $path;
            $thumb->defaultName = $preRand;
            $thumb->createThumb();
            $thumb->save();
            $registerForm->thumb = $thumb->image;
            $registerForm->registerDate = time();
//save方法会自动验证
            if ($registerForm->save() && $registerForm->login()) {
                Yii::app()->db->getLastInsertID(); //取得插入的Id。但是
            }

        }
Copy after login
Copy after login

上传的时候主要是这里:

$registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
Copy after login
Copy after login

但是现在遇到了一个问题。就是$registerForm继承了CFormModel,这个save方法是CActiveRecord的,为什么save方法就调用了呢?

此外,如果我要多文件上传,是不是

$file1=CUploadedFile::getInstance($registerForm, 'file1');
$file2=CUploadedFile::getInstance($registerForm, 'file2');
Copy after login
Copy after login

就可以了?

你好啊。这个多文件上传的这问题你解决了吗?

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles