. */ /** * Doctrine_Validator_Regexp * * @package Doctrine * @category Object Relational Mapping * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ 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; } }