Regexp.php 629 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9 10
<?php
class Doctrine_Validator_Regexp {
    /**
     * @param Doctrine_Record $record
     * @param string $key
     * @param mixed $value
     * @param string $args
     * @return boolean
     */
    public function validate(Doctrine_Record $record, $key, $value, $args) {
11 12 13 14 15
        if(is_array($args)) {
            foreach($args as $regexp) {
                if( ! preg_match("/$args/", $value))
                    return false;
            }
doctrine's avatar
doctrine committed
16
            return true;
17 18 19 20 21
        } else {
            if(preg_match("/$args/", $value))
                return true;
        }

doctrine's avatar
doctrine committed
22 23 24
        return false;
    }
}
25