DateTimeValidator
class DateTimeValidator extends DateValidator
Constants
PRETTY_DATE | Whether to format {@link \DateTime} objects as RFC-3339 dates ("Y-m-d H:i:s"). |
OBJECT_TO_STRING | Whether to cast objects with a "__toString()" method to strings. |
PATTERN |
Methods
initialize(ExecutionContextInterface $context) Initializes the constraint validator. | from ConstraintValidator | |
static bool | checkDate(int $year, int $month, int $day) Checks whether a date is valid. | from DateValidator |
validate(mixed $value, Constraint $constraint) Checks if the passed value is valid. |
Details
initialize(ExecutionContextInterface $context)
Initializes the constraint validator.
Parameters
ExecutionContextInterface | $context | The current validation context |
static bool checkDate(int $year, int $month, int $day)
Checks whether a date is valid.
Parameters
int | $year | The year |
int | $month | The month |
int | $day | The day |
Return Value
bool | Whether the date is valid |
validate(mixed $value, Constraint $constraint)
Checks if the passed value is valid.
Parameters
mixed | $value | The value that should be validated |
Constraint | $constraint | The constraint for the validation |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/4.0/Symfony/Component/Validator/Constraints/DateTimeValidator.html