Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / I18n / Validator / PhoneNumber / KH.php
blob848fdb927a86e8cfb6a14ca6d96b57d2a82f6b80
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 return array(
11 'code' => '855',
12 'patterns' => array(
13 'national' => array(
14 'general' => '/^[1-9]\\d{7,9}$/',
15 'fixed' => '/^(?:2[3-6]|3[2-6]|4[2-4]|[567][2-5])(?:[2-47-9]|5\\d|6\\d?)\\d{5}$/',
16 'mobile' => '/^(?:(?:1\\d|6[06-9]|7(?:[07-9]|6\\d))[1-9]|8(?:0[89]|[134679]\\d|5[2-689]|8\\d{2})|9(?:[0-589][1-9]|[67][1-9]\\d?))\\d{5}$/',
17 'tollfree' => '/^1800(?:1\\d|2[019])\\d{4}$/',
18 'premium' => '/^1900(?:1\\d|2[09])\\d{4}$/',
19 'emergency' => '/^11[789]|666$/',
21 'possible' => array(
22 'general' => '/^\\d{6,10}$/',
23 'fixed' => '/^\\d{6,9}$/',
24 'mobile' => '/^\\d{8,9}$/',
25 'tollfree' => '/^\\d{10}$/',
26 'premium' => '/^\\d{10}$/',
27 'emergency' => '/^\\d{3}$/',