source: pro-violet-viettel/sourcecode/api.violet.vn/www/lib/common/sfPhoneValidator.class.php @ 931

Last change on this file since 931 was 289, checked in by dungnv, 11 years ago
File size: 221 bytes
RevLine 
[289]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.