123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\basics;
-
-
- use app\common\server\JsonServer;
- use think\response\Json;
-
-
- abstract class Validate extends \think\Validate
- {
-
-
- public function goCheck($scene=null,$validate_data = [])
- {
-
- $params = request()->param();
-
- $params = array_merge($params,$validate_data);
-
-
- if (!($scene ? $this->scene($scene)->check($params) : $this->check($params))) {
- $exception = is_array($this->error)
- ? implode(';', $this->error) : $this->error;
- JsonServer::throw($exception);
- }
-
- return $params;
- }
-
-
-
- function checkMobile($value, $rule, $data)
- {
- $checkList = $rule['check'] ?? [ 'land' ];
-
- $arr = [
- 'land' => [
- 'title' => '手机号',
- 'preg' => '/^1[3-9]\d{9}$/',
- ],
- 'hk' => [
- 'title' => '手机号',
- 'preg' => '/^(00|\+)?(852)[5|6|9]\d{7}$/',
- ],
- 'taiWan' => [
- 'title' => '手机号',
- 'preg' => '/^(00|\+)?(886)[0][9]\d{8}$/',
- ],
- 'aoMen' => [
- 'title' => '手机号',
- 'preg' => '/^(00|\+)?(853)?[6]\d{7}$/',
- ],
- 'landTel' => [
- 'title' => '电话',
- 'preg' => '/^(?:(?:\d{3}-?)?\d{8}|^(?:\d{4}-?)?\d{7,8})(?:-\d+)?$/',
- ],
- ];
-
- $result = false;
- foreach ($checkList as $key) {
- if (! isset($arr[$key])) {
- return '不存在的手机或电话地区';
- }
- if (preg_match($arr[$key]['preg'], $value)) {
- $result = true;
- break;
- }
- }
-
- return $result ? true : ($rule['msg'] ?? '联系方式错误');
- }
- }
|