Yii如何使用model来上传多个文件
我以前是使用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; } }
然后在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。但是 } }
上传的时候主要是这里:
$registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
但是现在遇到了一个问题。就是$registerForm继承了CFormModel,这个save方法是CActiveRecord的,为什么save方法就调用了呢?
此外,如果我要多文件上传,是不是
$file1=CUploadedFile::getInstance($registerForm, 'file1'); $file2=CUploadedFile::getInstance($registerForm, 'file2');
就可以了?
回复内容:
我以前是使用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; } }
然后在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。但是 } }
上传的时候主要是这里:
$registerForm->avatar = CUploadedFile::getInstance($registerForm, 'avatar');
但是现在遇到了一个问题。就是$registerForm继承了CFormModel,这个save方法是CActiveRecord的,为什么save方法就调用了呢?
此外,如果我要多文件上传,是不是
$file1=CUploadedFile::getInstance($registerForm, 'file1'); $file2=CUploadedFile::getInstance($registerForm, 'file2');
就可以了?
你好啊。这个多文件上传的这问题你解决了吗?

Outils d'IA chauds

Undresser.AI Undress
Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover
Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool
Images de déshabillage gratuites

Clothoff.io
Dissolvant de vêtements AI

AI Hentai Generator
Générez AI Hentai gratuitement.

Article chaud

Outils chauds

Bloc-notes++7.3.1
Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise
Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1
Puissant environnement de développement intégré PHP

Dreamweaver CS6
Outils de développement Web visuel

SublimeText3 version Mac
Logiciel d'édition de code au niveau de Dieu (SublimeText3)

Sujets chauds

Dans ce chapitre, nous comprendrons les variables d'environnement, la configuration générale, la configuration de la base de données et la configuration de la messagerie dans CakePHP.

PHP 8.4 apporte plusieurs nouvelles fonctionnalités, améliorations de sécurité et de performances avec une bonne quantité de dépréciations et de suppressions de fonctionnalités. Ce guide explique comment installer PHP 8.4 ou mettre à niveau vers PHP 8.4 sur Ubuntu, Debian ou leurs dérivés. Bien qu'il soit possible de compiler PHP à partir des sources, son installation à partir d'un référentiel APT comme expliqué ci-dessous est souvent plus rapide et plus sécurisée car ces référentiels fourniront les dernières corrections de bogues et mises à jour de sécurité à l'avenir.

Pour travailler avec la date et l'heure dans cakephp4, nous allons utiliser la classe FrozenTime disponible.

Pour travailler sur le téléchargement de fichiers, nous allons utiliser l'assistant de formulaire. Voici un exemple de téléchargement de fichiers.

Dans ce chapitre, nous allons apprendre les sujets suivants liés au routage ?

CakePHP est un framework open source pour PHP. Il vise à faciliter grandement le développement, le déploiement et la maintenance d'applications. CakePHP est basé sur une architecture de type MVC à la fois puissante et facile à appréhender. Modèles, vues et contrôleurs gu

Visual Studio Code, également connu sous le nom de VS Code, est un éditeur de code source gratuit – ou environnement de développement intégré (IDE) – disponible pour tous les principaux systèmes d'exploitation. Avec une large collection d'extensions pour de nombreux langages de programmation, VS Code peut être c

Le validateur peut être créé en ajoutant les deux lignes suivantes dans le contrôleur.
