本文整理汇总了PHP中lithium\util\Validator::isPhone方法的典型用法代码示例。如果您正苦于以下问题:PHP Validator::isPhone方法的具体用法?PHP Validator::isPhone怎么用?PHP Validator::isPhone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lithium\util\Validator
的用法示例。
在下文中一共展示了Validator::isPhone方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testMultipleLocales
public function testMultipleLocales()
{
$data = '/phone en_US/';
Catalog::write('runtime', 'validation.phone', 'en_US', $data);
$data = '/phone en_GB/';
Catalog::write('runtime', 'validation.phone', 'en_GB', $data);
Validator::add('phone', array('en_US' => Catalog::read('runtime', 'validation.phone', 'en_US'), 'en_GB' => Catalog::read('runtime', 'validation.phone', 'en_GB')));
$result = Validator::isPhone('phone en_US', 'en_US');
$this->assertTrue($result);
$result = Validator::isPhone('phone en_GB', 'en_GB');
$this->assertTrue($result);
}
示例2: testAddCustomRegexFormats
/**
* Tests that new formats can be added to existing regex methods using Validator::add().
*/
public function testAddCustomRegexFormats()
{
$this->assertTrue(Validator::isPhone('1234567890'));
$this->assertTrue(Validator::isPhone('+1234567890'));
$this->assertFalse(Validator::isPhone('0800-LITHIUM'));
Validator::add(array('phone' => array('foo' => '/^0800-[A-Z]+$/')));
$this->assertTrue(Validator::isPhone('0800-LITHIUM'));
$this->assertTrue(Validator::isPhone('0800-LITHIUM', 'foo'));
$this->assertTrue(Validator::isPhone('0800-LITHIUM', 'any'));
}
示例3: testFrCa
public function testFrCa()
{
Validator::add(Catalog::read('validation', 'fr_CA'));
$this->assertTrue(Validator::isPhone('(401) 321-9876'));
$this->assertTrue(Validator::isPostalCode('M5J 2G8'));
$this->assertTrue(Validator::isPostalCode('H2X 3X5'));
}