| 123456789101112131415161718192021 |
- <?php
- namespace App\Module\China\Validator;
- use UCore\Validator;
- class IdCardValidator extends Validator
- {
- public function validate(mixed $value, array $data): bool
- {
- if (strlen($value) != 18) {
- return false;
- }
- return true;
- }
- }
|