123456789101112131415161718192021222324 |
- <?php
- /**
- * Created by PhpStorm.
- * User : zgcLives
- * CreateTime : 2022/6/1 11:56
- */
- namespace addons\exam\library;
- class ValidateService
- {
- /**
- * 验证手机号
- * @param $phone
- * @return false|int
- */
- public static function phone($phone)
- {
- if (!$phone || !\think\Validate::regex($phone, "^1\d{10}$")) {
- return false;
- }
- return true;
- }
- }
|