程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Yii-數據模型- rules類驗證器方法詳解,yii-rules

Yii-數據模型- rules類驗證器方法詳解,yii-rules

編輯:關於PHP編程

Yii-數據模型- rules類驗證器方法詳解,yii-rules


public function rules()
{
return array(
array('project_id, type_id, status_id, owner_id, requester_id,', 'numerical', 'integerOnly'=>true),
array('name', 'length', 'max'=>256),
array('description', 'length', 'max'=>2000),
array('create_time,create_user_id,update_user_id, update_time', 'safe'),
array('id, name, description, project_id, type_id, status_id, owner_id', 'on'=>'search'),
);
}

//required: 必填
array('title,content','required'),

//match: 正則表達式驗證
array('birthday', 'match', 'pattern'=>'%^\d{4}(\-|\/|\.)\d{1,2}\1\d{1,2}$%', 'allowEmpty'=>true, 'message'=>'生日必須是年-月-日格式'),

//email:郵箱格式驗證
array('user_mail', 'email'),

//url:URL格式驗證
array('user', 'url'),

//unique:唯一性驗證
array('username', 'unique','caseSensitive'=>false,'className'=>'user','message'=>'用戶名"{value}"已經被注冊,請更換'),
//caseSensitive 定義大小寫是否敏感

//compare:一致性驗證
array('repassword', 'compare', 'compareAttribute'=>'password','message'=>'兩處輸入的密碼並不一致'),

//length:長度驗證

//in: 驗證此屬性值在列表之中(通過range指定)。

//numerical: 驗證此屬性的值是一個數字

//captcha: 驗證屬性值和驗證碼中顯示的一致
array('verifyCode','captcha'),

//type: 驗證屬性的類型是否為type所指定的類型.


//file: 驗證一個屬性是否接收到一個有效的上傳文件


//default: 屬性指定默認值


//exist: 驗證屬性值在數據庫中是否存在


//boolean: 驗證布爾屬性值


//date: 檢驗此屬性是否描述了一個日期、時間或日期時間


//safe: 屬性標志為在批量賦值時是安全的。


//unsafe: 標志為不安全,所以他們不能被批量賦值。

 


Yii rules 規則 自定義寫法

yxmhero1989.blog.163.com/...61864/
 

yii中的controller怎調用model自定義的方法

一般情況下使用的是 Model::model()->方法名
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved