日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

yii 字段验证的使用

發布時間:2024/4/14 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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 字段验证的使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。