zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
 * @copyright ©2018 Lu Wei
 * @author Lu Wei
 * @link http://www.luweiss.com/
 * Created by IntelliJ IDEA
 * Date Time: 2018/10/11 15:32
 */
 
 
namespace app\validators;
 
 
use yii\validators\Validator;
 
class PhoneNumberValidator extends Validator
{
    public $pattern = '/^1\d{10}$/';
 
    public function validateAttribute($model, $attribute)
    {
        $value = $model->$attribute;
        $pattern = $this->pattern;
        if ($value && !preg_match($pattern, $value)) {
            $model->addError($attribute, "{$model->getAttributeLabel($attribute)}格式不正确。");
        }
    }
}