chenkby / yii2-mobile-validator
手机号码验证(中国)
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-31 19:34:48 UTC
README
Yii2 手机号码验证器
安装
添加到你的composer.json文件
"chenkby/yii2-mobile-validator": "*"
或
composer require "chenkby/yii2-mobile-validator:*"
使用
在model的rule中:
public function rules() { ... ['mobile', \chenkby\mobileValidator\MobilePhoneValidator::className()], ... }
属性
注意:本验证器默认使用宽松正则(/^1[1234567890]\d{9}$/)
$serviceRegex: 服务器端正则表达式
$clientRegex: 客户端正则表达式
public function rules() { ... ['mobile', \chenkby\mobileValidator\MobilePhoneValidator::className(), 'serverRegex' => "/^1[1234567890]\d{9}$/", 'clientRegex' => "/^1[1234567890]\d{9}$/"], ... }