MaxLength
Edit this pageWarning: You are browsing the documentation for Symfony 2.0, which is no longer maintained.
Read the updated version of this page for Symfony 6.1 (the current stable version).
MaxLength
Validates that the length of a string is not larger than the given limit.
Applies to | property or method |
Options | |
Class | MaxLength |
Validator | MaxLengthValidator |
Basic Usage
- YAML
- Annotations
- XML
- PHP
1 2 3 4 5
# src/Acme/BlogBundle/Resources/config/validation.yml
Acme\BlogBundle\Entity\Blog:
properties:
summary:
- MaxLength: 100
Options
limit
type: integer
[default option]
This required option is the "max" value. Validation will fail if the length of the give string is greater than this number.
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.