芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/portal.pulsehost.co.uk/vendor/punic/punic/src/Phone.php
$prefixes) { if (in_array($prefix, $prefixes)) { $result[] = $territoryCode; } } } return $result; } /** * Retrieve the max length of the country calling codes. * * @return int */ public static function getMaxPrefixLength() { static $result; if (!isset($result)) { $maxLen = 0; $data = Data::getGeneric('telephoneCodeData'); foreach ($data as $territoryCode => $prefixes) { foreach ($prefixes as $prefix) { $len = strlen($prefix); if ($maxLen < $len) { $maxLen = $len; } } } $result = $maxLen; } return $result; } }