ktaris / yii2-mexvalidators
为特定于墨西哥的数据提供两种数据验证器:CURP 和 RFC。
0.0.1
2015-10-08 03:19 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-09-28 17:53:48 UTC
README
用于墨西哥身份识别、RFC 和 CURP 的两种数据字符串验证器,用于与 Yii 2.* 框架 一起使用。
安装
将依赖项添加到您的 composer.json
文件中
{ "require": { "ktaris/yii2-mexvalidators": "0.0.1" } }
用法
为了使用验证器,您需要在模型中提供验证器的完整路径
public function rules() { return [ [['rfc'], RfcValidator::className()], [['curp'], CurpValidator::className()], ]; }