Exemplo n.º 1
0
 function createRegexValidator($regex)
 {
     require_once 'Validation/RegexValidator.php';
     $validator = new RegexValidator();
     $validator->setRegex($regex);
     return $validator;
 }