1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/Doctrine/Validator/Date.php

22 lines
494 B
PHP
Raw Normal View History

2006-05-30 12:56:40 +04:00
<?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) {
2006-08-21 14:16:36 +04:00
if(empty($value))
return true;
$e = explode("-", $value);
if(count($e) !== 3)
return false;
return checkdate($e[1], $e[0], $e[2]);
2006-05-30 12:56:40 +04:00
}
}
?>