Pixel Чтобы добавлять в избранное, нужно авторизироваться

php / Валидатор телефонного номера в symfony 1.2

/**
 * sfValidatorTelephone
 *
 * @package    
 * @subpackage validator
 * @author     broderix
 * @version    
 */
class sfValidatorTelephone extends sfValidatorRegex
{
  /**
   * @see sfValidatorRegex
   */
  protected function configure($options = array(), $messages = array())
  {
    parent::configure($options, $messages);

    $this->setOption('pattern', '/^(\+\d\(\d+\)\d*)$/i');
  }
}
2009-03-17 20:23:27

Comments

There is no comment for the moment. Add a new comment