mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
482 B
482 B
PostalCode
v::postalCode(string $countryCode)
Validates a postal code according to the given country code.
v::numeric()->postalCode('BR')->validate('02179000'); //true
v::numeric()->postalCode('BR')->validate('02179-000'); //true
v::numeric()->postalCode('US')->validate('02179-000'); //false
Message template for this validator includes {{countryCode}}.
Extracted from GeoNames.
See also: