source: pro-bachkim-filespace/sourcecode/api.violet.vn/www/lib/common/sfIdnumberValidator.class.php @ 179

Last change on this file since 179 was 19, checked in by dungnv, 11 years ago
File size: 202 bytes
Line 
1<?php
2
3class sfIdnumberValidator extends sfValidator
4{
5  public function execute(&$idno, &$error)
6  {
7    $error = "Số CMND khÃŽng đúng chuẩn";
8    return preg_match('/^\d{9,12}$/', $idno);
9  }
10}
Note: See TracBrowser for help on using the repository browser.