edofre/yii2-validators

Yii2常用验证器

安装: 9

依赖: 0

建议者: 0

安全性: 0

星标: 1

关注者: 2

分支: 0

类型:yii2-extension

V1.0.2 2016-12-25 11:12 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:19:54 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock

安装方法

安装此扩展的首选方法是通过 composer.

安装时,请运行以下命令之一

$ php composer.phar require edofre/yii2-validators "V1.0.2"

或添加

"edofre/yii2-validators": "V1.0.2"

到您的 composer.json 文件的 require 部分。

ZipCodeValidator

按照以下规则插入

/**
* @inheritdoc
*/
public function rules()
{
    return [
        ...
        ['zip_code', 'edofre\validators\ZipCodeValidator'],
        ...
    ];
}

PriceValidator

按照以下规则插入

/**
* @inheritdoc
*/
public function rules()
{
    return [
        ...
        ['price', 'edofre\validators\PriceValidator'],
        ...
    ];
}