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

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