首页 > PHP资讯 > PHP培训技术 > yii-使用CForm类(Formbuilder)上传文件

yii-使用CForm类(Formbuilder)上传文件

PHP培训技术

虽然有很多单独的文件上传和 CForm(form builder)的文档,当没有两者相结合的例子。

模型(model)

首先需要一个文件上传的模型:FileUpload.php

 class FileUpload extends CFormModel { public $image; /**     * @return array validation rules for model attributes. */ public function rules() { return array( //note you wont need a safe rule here array('image', 'file', 'allowEmpty' => true, 'types' => 'jpg, jpeg, gif, png'), ); } }

注意:> 关于更多验证规则的说明请查看

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持44不支持0