mikk150/yii2-phone-validator

yii2电话号码验证器

安装次数: 10,334

依赖关系: 1

建议者: 0

安全: 0

星标: 5

关注者: 1

分支: 2

公开问题: 0

类型:yii2-extension

1.0.6 2023-04-19 14:19 UTC

This package is auto-updated.

Last update: 2024-09-03 11:53:33 UTC


README

此扩展用于验证电话号码

Build Status codecov

它还可以将电话号码格式化为ITU-T E.164或LibPhoneNumber支持的任何其他格式(完整支持请参阅libphonenumber\PhoneNumberFormat)

使用方法

// add this in your model
use mikk150\phonevalidator\PhoneNumberValidator;

// use the validator in your model rules
public function rules() {
    return [
        [['phone'], PhoneNumberValidator::className(), 'country' => 'US']
    ];
}