mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
return array(
|
|
'code' => '1',
|
|
'patterns' => array(
|
|
'national' => array(
|
|
'general' => '/^[589]\\d{9}$/',
|
|
'fixed' => '/^868(?:2(?:01|2[1-5])|6(?:07|1[4-6]|2[1-9]|[3-6]\\d|7[0-79]|9[0-8])|82[12])\\d{4}$/',
|
|
'mobile' => '/^868(?:29\\d|3(?:0[1-9]|1[02-9]|[2-9]\\d)|4(?:[679]\\d|8[0-4])|6(?:20|78|8\\d)|7(?:03|1[02-9]|[2-9]\\d))\\d{4}$/',
|
|
'tollfree' => '/^8(?:00|55|66|77|88)[2-9]\\d{6}$/',
|
|
'premium' => '/^900[2-9]\\d{6}$/',
|
|
'personal' => '/^5(?:00|33|44)[2-9]\\d{6}$/',
|
|
'emergency' => '/^99[09]$/',
|
|
),
|
|
'possible' => array(
|
|
'general' => '/^\\d{7}(?:\\d{3})?$/',
|
|
'mobile' => '/^\\d{10}$/',
|
|
'tollfree' => '/^\\d{10}$/',
|
|
'premium' => '/^\\d{10}$/',
|
|
'personal' => '/^\\d{10}$/',
|
|
'emergency' => '/^\\d{3}$/',
|
|
),
|
|
),
|
|
);
|