panwenbin/yii2-eithervalidator

需要 Yii2 验证器为 either 属性

0.0.1 2017-01-02 08:10 UTC

This package is not auto-updated.

Last update: 2024-09-23 15:20:39 UTC


README

需要 Yii2 验证器为 either 属性

安装

composer require "panwenbin/yii2-eithervalidator"

用法

将以下类似的规则添加到模型的规则中

    [
        ['email'],
        EitherValidator::className(),
        'eitherAttributes' => ['phone'],
        'message' => Yii::t('app', 'Either attribute {attribute}, {either_attributes} is required')
    ]