3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
14 'general' => '/^[3-9]\\d{7,8}$/',
15 'fixed' => '/^(?:[35]\\d|49)\\d{6}$/',
16 'mobile' => '/^6(?:03|44|71|[1-356])\\d{6}$/',
17 'tollfree' => '/^8[08]\\d{6}$/',
18 'premium' => '/^9[0246]\\d{6}$/',
19 'shared' => '/^8[12]\\d{6}$/',
20 'uan' => '/^70[23]\\d{5}$/',
21 'emergency' => '/^12[234]$/',
24 'general' => '/^\\d{6,9}$/',
25 'fixed' => '/^\\d{6,8}$/',
26 'mobile' => '/^\\d{8,9}$/',
27 'tollfree' => '/^\\d{8}$/',
28 'premium' => '/^\\d{8}$/',
29 'shared' => '/^\\d{8}$/',
30 'uan' => '/^\\d{8}$/',
31 'emergency' => '/^\\d{3}$/',