mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
23 lines
327 B
Markdown
23 lines
327 B
Markdown
# MacAddress
|
|
|
|
- `MacAddress()`
|
|
|
|
Validates a Mac Address.
|
|
|
|
```php
|
|
v::macAddress()->validate('00:11:22:33:44:55'); // true
|
|
v::macAddress()->validate('af-AA-22-33-44-55'); // true
|
|
```
|
|
|
|
## Changelog
|
|
|
|
Version | Description
|
|
--------|-------------
|
|
0.3.9 | Created
|
|
|
|
***
|
|
See also:
|
|
|
|
- [Domain](Domain.md)
|
|
- [Ip](Ip.md)
|
|
- [Tld](Tld.md)
|