mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
35 lines
1.2 KiB
PHP
35 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-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
return array(
|
|
'code' => '48',
|
|
'patterns' => array(
|
|
'national' => array(
|
|
'general' => '/^[1-58]\\d{6,8}|9\\d{8}|[67]\\d{5,8}$/',
|
|
'fixed' => '/^(?:1[2-8]|2[2-59]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-6]|8[1-7])\\d{5,7}|77\\d{4,7}|(?:89|9[145])\\d{7}$/',
|
|
'mobile' => '/^(?:5[013]|6[069]|7[2389]|88)\\d{7}$/',
|
|
'pager' => '/^642\\d{3,6}$/',
|
|
'tollfree' => '/^800\\d{6}$/',
|
|
'premium' => '/^70\\d{7}$/',
|
|
'shared' => '/^801\\d{6}$/',
|
|
'voip' => '/^39\\d{7}$/',
|
|
'emergency' => '/^112|99[789]$/',
|
|
),
|
|
'possible' => array(
|
|
'general' => '/^\\d{6,9}$/',
|
|
'mobile' => '/^\\d{9}$/',
|
|
'tollfree' => '/^\\d{9}$/',
|
|
'premium' => '/^\\d{9}$/',
|
|
'shared' => '/^\\d{9}$/',
|
|
'voip' => '/^\\d{9}$/',
|
|
'emergency' => '/^\\d{3}$/',
|
|
),
|
|
),
|
|
);
|