tao-test/app/vendor/respect/validation/docs/rules/Pesel.md

16 lines
320 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Pesel
- `v::pesel()`
Validates PESEL (Polish human identification number).
```php
v::pesel()->validate('21120209256'); // true
v::pesel()->validate('97072704800'); // true
v::pesel()->validate('97072704801'); // false
v::pesel()->validate('PESEL123456'); // false
```
See also:
* [IdentityCard](IdentityCard.md)