mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 22:35:45 +01:00
When we make changes to the code, renaming variables, or adding parameters to a validator, it's easy to forget to update the documentation. With this change, we avoid having a disparity between the documentation and the code.
1.9 KiB
1.9 KiB
PostalCode
PostalCode(string $countryCode)PostalCode(string $countryCode, bool $formatted)
Validates whether the input is a valid postal code or not.
v::postalCode('BR')->isValid('02179000'); // true
v::postalCode('BR')->isValid('02179-000'); // true
v::postalCode('US')->isValid('02179-000'); // false
v::postalCode('US')->isValid('55372'); // true
v::postalCode('PL')->isValid('99-300'); // true
By default, PostalCode won't validate the format (puncts, spaces), unless you pass $formatted = true:
v::postalCode('BR', true)->isValid('02179000'); // false
v::postalCode('BR', true)->isValid('02179-000'); // true
Message template for this validator includes {{countryCode}}.
Extracted from GeoNames.
Templates
PostalCode::TEMPLATE_STANDARD
| Mode | Template |
|---|---|
default |
{{subject}} must be a valid postal code on {{countryCode}} |
inverted |
{{subject}} must not be a valid postal code on {{countryCode}} |
Template placeholders
| Placeholder | Description |
|---|---|
countryCode |
|
subject |
The validated input or the custom validator name (if specified). |
Categorization
- Localization
- Strings
Changelog
| Version | Description |
|---|---|
| 2.3.0 | Add option to validate formatting |
| 2.2.4 | Cambodian postal codes now support 5 and 6 digits |
| 0.7.0 | Created |
See also: