|
|
| |
FormValidator::Lite::Constraint::Date(3) |
User Contributed Perl Documentation |
FormValidator::Lite::Constraint::Date(3) |
FormValidator::Lite::Constraint::Date - date constraints
This module provides date constraints.
- DATE
-
$validator = FormValidator::Lite->new(CGI->new("date=2009-09-02"));
$validator->check(
date => ['DATE']
);
# or
$validator = FormValidator::Lite->new(CGI->new("y=2009&m=09&d=02"));
$validator->check(
{date => [qw/y m d/]} => ['DATE']
);
This constraints checks the parameter is valid date or
not.
Visit the GSP FreeBSD Man Page Interface. Output converted with ManDoc. |