1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Validator/Regexp.php
2006-10-11 16:24:18 +00:00

26 lines
596 B
PHP

<?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) {
if(is_array($args)) {
foreach($args as $regexp) {
if( ! preg_match($args, $value))
return false;
}
return true;
} else {
if(preg_match($args, $value))
return true;
}
return false;
}
}