国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php - yii rules how to add validation for a non-database field?
黃舟
黃舟 2017-05-17 09:55:59
0
1
742

For example, I want to add a verification for field A, but it does not exist in the database. An error will be reported at this time. Are there any parameters that can be set?

黃舟
黃舟

人生最曼妙的風(fēng)景,竟是內(nèi)心的淡定與從容!

reply all(1)
小葫蘆

Override rulesMethod

class Model extends \yii\db\ActiveRecord
{
    //...
    public function rules() {
        $rules = parent::rules();
        $rules[] = [['phone'],'integer','message'=>'手機(jī)號碼必須是數(shù)字'];
        return $rules;
    }
    //...
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template