1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Validator/Date.php
2006-09-26 15:00:13 +00:00

22 lines
492 B
PHP

<?php
class Doctrine_Validator_Date {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
if(empty($value))
return true;
$e = explode("-", $value);
if(count($e) !== 3)
return false;
return checkdate($e[1], $e[0], $e[2]);
}
}