yii 字段验证的使用
生活随笔
收集整理的這篇文章主要介紹了
yii 字段验证的使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
public function rules(){return array(array('name', 'required', 'requiredValue' => "1", 'strict' => true, 'on' => 'required', 'message' => 'This is message.'),array('name', 'boolean', 'strict' => true, 'trueValue' => 'a', 'falseValue' => 'b', 'on' => 'bool'),array('name', 'compare', 'compareValue' => 'wangyi', 'operator' => '!=', 'on' => 'compare'),array('name', 'default', 'value' => 'wangyi', 'on' => 'default'),array('name', 'email', 'allowEmpty' => false, 'on' => 'email'),array('salon_id', 'exist', 'className' => 'SalonAr', 'on' => 'exist'),array('name', 'filter', 'filter' => function ($value) {return 'filter_' . $value;}, 'on' => 'filter'),// array('name', 'inline', 'method' => 'inline', 'params' => 'hello', 'on' => 'inline'), //沒搞懂array('name', 'numerical', 'min' => 0, 'max' => 100, 'integerOnly' => true, 'tooSmall' => 'the value is too small', 'tooBig' => 'the value is too big', 'on' => 'number'),array('name', 'in', 'range' => array(1, 2, 3, 4, 5), 'on' => 'range'),array('name', 'length', 'min' => 10, 'is' => 20, 'max' => 100, 'tooShort' => 'string is too short', 'tooLong' => 'string is too long', 'on' => 'length'),array('name', 'match', 'pattern' => '/^wangyi$/', 'not' => false, 'on' => 'match'),array('name', 'type', 'type' => 'string', 'on' => 'string'),array('name', 'type', 'type' => 'integer', 'on' => 'integer'),array('name', 'type', 'type' => 'float', 'on' => 'float'),array('name', 'type', 'type' => 'date', 'dateFormat' => 'yyyy-MM-dd', 'on' => 'date'),array('name', 'type', 'type' => 'time', 'timeFormat' => 'HH:mm', 'on' => 'time'),array('name', 'type', 'type' => 'datetime', 'datetimeFormat' => 'yyyy-MM-dd HH:mm', 'on' => 'datetime'),array('name', 'type', 'type' => 'array', 'on' => 'array'),array('salon_id', 'unique', 'className' => 'SalonAr', 'on' => 'unique'),array('name', 'url', 'on' => 'url'),array('name,id', 'checker', 'hello' => 'world', 'on' => 'diy'),);}//自定義 $attribute 為要驗證的字段的名 $params 為除了驗證字段和驗證類型外的 其他所有參數的數組public function checker($attribute, $params){if ($this->name != 'wangyi') {$this->addError($attribute, 'this name must be wangyi');return false;}return true;}?
?
轉載于:https://my.oschina.net/chunhei2008/blog/611118
總結
以上是生活随笔為你收集整理的yii 字段验证的使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python调用模块发送邮件(粗糙版)
- 下一篇: 如果测试你的MongoDB应用升级?