Date.php 494 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9 10
<?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) {
zYne's avatar
zYne committed
11 12 13 14 15 16 17 18
        if(empty($value))
            return true;

        $e = explode("-", $value);
        if(count($e) !== 3) 
            return false;

        return checkdate($e[1], $e[0], $e[2]);
doctrine's avatar
doctrine committed
19 20 21
    }
}
?>