Complex classes like PhoneNumberUtil often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use PhoneNumberUtil, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
23 | class PhoneNumberUtil |
||
24 | { |
||
25 | /** Flags to use when compiling regular expressions for phone numbers */ |
||
26 | const REGEX_FLAGS = 'ui'; //Unicode and case insensitive |
||
27 | // The minimum and maximum length of the national significant number. |
||
28 | const MIN_LENGTH_FOR_NSN = 2; |
||
29 | // The ITU says the maximum length should be 15, but we have found longer numbers in Germany. |
||
30 | const MAX_LENGTH_FOR_NSN = 17; |
||
31 | |||
32 | // We don't allow input strings for parsing to be longer than 250 chars. This prevents malicious |
||
33 | // input from overflowing the regular-expression engine. |
||
34 | const MAX_INPUT_STRING_LENGTH = 250; |
||
35 | |||
36 | // The maximum length of the country calling code. |
||
37 | const MAX_LENGTH_COUNTRY_CODE = 3; |
||
38 | |||
39 | const REGION_CODE_FOR_NON_GEO_ENTITY = "001"; |
||
40 | const META_DATA_FILE_PREFIX = 'PhoneNumberMetadata'; |
||
41 | const TEST_META_DATA_FILE_PREFIX = 'PhoneNumberMetadataForTesting'; |
||
42 | |||
43 | // Region-code for the unknown region. |
||
44 | const UNKNOWN_REGION = "ZZ"; |
||
45 | |||
46 | const NANPA_COUNTRY_CODE = 1; |
||
47 | /* |
||
48 | * The prefix that needs to be inserted in front of a Colombian landline number when dialed from |
||
49 | * a mobile number in Colombia. |
||
50 | */ |
||
51 | const COLOMBIA_MOBILE_TO_FIXED_LINE_PREFIX = "3"; |
||
52 | // The PLUS_SIGN signifies the international prefix. |
||
53 | const PLUS_SIGN = '+'; |
||
54 | const PLUS_CHARS = '++'; |
||
55 | const STAR_SIGN = '*'; |
||
56 | |||
57 | const RFC3966_EXTN_PREFIX = ";ext="; |
||
58 | const RFC3966_PREFIX = "tel:"; |
||
59 | const RFC3966_PHONE_CONTEXT = ";phone-context="; |
||
60 | const RFC3966_ISDN_SUBADDRESS = ";isub="; |
||
61 | |||
62 | // We use this pattern to check if the phone number has at least three letters in it - if so, then |
||
63 | // we treat it as a number where some phone-number digits are represented by letters. |
||
64 | const VALID_ALPHA_PHONE_PATTERN = "(?:.*?[A-Za-z]){3}.*"; |
||
65 | // We accept alpha characters in phone numbers, ASCII only, upper and lower case. |
||
66 | const VALID_ALPHA = "A-Za-z"; |
||
67 | |||
68 | |||
69 | // Default extension prefix to use when formatting. This will be put in front of any extension |
||
70 | // component of the number, after the main national number is formatted. For example, if you wish |
||
71 | // the default extension formatting to be " extn: 3456", then you should specify " extn: " here |
||
72 | // as the default extension prefix. This can be overridden by region-specific preferences. |
||
73 | const DEFAULT_EXTN_PREFIX = " ext. "; |
||
74 | |||
75 | // Regular expression of acceptable punctuation found in phone numbers. This excludes punctuation |
||
76 | // found as a leading character only. |
||
77 | // This consists of dash characters, white space characters, full stops, slashes, |
||
78 | // square brackets, parentheses and tildes. It also includes the letter 'x' as that is found as a |
||
79 | // placeholder for carrier information in some phone numbers. Full-width variants are also |
||
80 | // present. |
||
81 | const VALID_PUNCTUATION = "-x\xE2\x80\x90-\xE2\x80\x95\xE2\x88\x92\xE3\x83\xBC\xEF\xBC\x8D-\xEF\xBC\x8F \xC2\xA0\xC2\xAD\xE2\x80\x8B\xE2\x81\xA0\xE3\x80\x80()\xEF\xBC\x88\xEF\xBC\x89\xEF\xBC\xBB\xEF\xBC\xBD.\\[\\]/~\xE2\x81\x93\xE2\x88\xBC"; |
||
82 | const DIGITS = "\\p{Nd}"; |
||
83 | |||
84 | // Pattern that makes it easy to distinguish whether a region has a unique international dialing |
||
85 | // prefix or not. If a region has a unique international prefix (e.g. 011 in USA), it will be |
||
86 | // represented as a string that contains a sequence of ASCII digits. If there are multiple |
||
87 | // available international prefixes in a region, they will be represented as a regex string that |
||
88 | // always contains character(s) other than ASCII digits. |
||
89 | // Note this regex also includes tilde, which signals waiting for the tone. |
||
90 | const UNIQUE_INTERNATIONAL_PREFIX = "[\\d]+(?:[~\xE2\x81\x93\xE2\x88\xBC\xEF\xBD\x9E][\\d]+)?"; |
||
91 | const NON_DIGITS_PATTERN = "(\\D+)"; |
||
92 | |||
93 | // The FIRST_GROUP_PATTERN was originally set to $1 but there are some countries for which the |
||
94 | // first group is not used in the national pattern (e.g. Argentina) so the $1 group does not match |
||
95 | // correctly. Therefore, we use \d, so that the first group actually used in the pattern will be |
||
96 | // matched. |
||
97 | const FIRST_GROUP_PATTERN = "(\\$\\d)"; |
||
98 | const NP_PATTERN = '\\$NP'; |
||
99 | const FG_PATTERN = '\\$FG'; |
||
100 | const CC_PATTERN = '\\$CC'; |
||
101 | |||
102 | // A pattern that is used to determine if the national prefix formatting rule has the first group |
||
103 | // only, i.e., does not start with the national prefix. Note that the pattern explicitly allows |
||
104 | // for unbalanced parentheses. |
||
105 | const FIRST_GROUP_ONLY_PREFIX_PATTERN = '\\(?\\$1\\)?'; |
||
106 | public static $PLUS_CHARS_PATTERN; |
||
107 | protected static $SEPARATOR_PATTERN; |
||
108 | protected static $CAPTURING_DIGIT_PATTERN; |
||
109 | protected static $VALID_START_CHAR_PATTERN = null; |
||
110 | public static $SECOND_NUMBER_START_PATTERN = '[\\\\/] *x'; |
||
111 | public static $UNWANTED_END_CHAR_PATTERN = "[[\\P{N}&&\\P{L}]&&[^#]]+$"; |
||
112 | protected static $DIALLABLE_CHAR_MAPPINGS = array(); |
||
113 | protected static $CAPTURING_EXTN_DIGITS; |
||
114 | |||
115 | /** |
||
116 | * @var PhoneNumberUtil |
||
117 | */ |
||
118 | protected static $instance = null; |
||
119 | |||
120 | /** |
||
121 | * Only upper-case variants of alpha characters are stored. |
||
122 | * @var array |
||
123 | */ |
||
124 | protected static $ALPHA_MAPPINGS = array( |
||
125 | 'A' => '2', |
||
126 | 'B' => '2', |
||
127 | 'C' => '2', |
||
128 | 'D' => '3', |
||
129 | 'E' => '3', |
||
130 | 'F' => '3', |
||
131 | 'G' => '4', |
||
132 | 'H' => '4', |
||
133 | 'I' => '4', |
||
134 | 'J' => '5', |
||
135 | 'K' => '5', |
||
136 | 'L' => '5', |
||
137 | 'M' => '6', |
||
138 | 'N' => '6', |
||
139 | 'O' => '6', |
||
140 | 'P' => '7', |
||
141 | 'Q' => '7', |
||
142 | 'R' => '7', |
||
143 | 'S' => '7', |
||
144 | 'T' => '8', |
||
145 | 'U' => '8', |
||
146 | 'V' => '8', |
||
147 | 'W' => '9', |
||
148 | 'X' => '9', |
||
149 | 'Y' => '9', |
||
150 | 'Z' => '9', |
||
151 | ); |
||
152 | |||
153 | /** |
||
154 | * Map of country calling codes that use a mobile token before the area code. One example of when |
||
155 | * this is relevant is when determining the length of the national destination code, which should |
||
156 | * be the length of the area code plus the length of the mobile token. |
||
157 | * @var array |
||
158 | */ |
||
159 | protected static $MOBILE_TOKEN_MAPPINGS = array(); |
||
160 | |||
161 | /** |
||
162 | * Set of country codes that have geographically assigned mobile numbers (see GEO_MOBILE_COUNTRIES |
||
163 | * below) which are not based on *area codes*. For example, in China mobile numbers start with a |
||
164 | * carrier indicator, and beyond that are geographically assigned: this carrier indicator is not |
||
165 | * considered to be an area code. |
||
166 | * |
||
167 | * @var array |
||
168 | */ |
||
169 | protected static $GEO_MOBILE_COUNTRIES_WITHOUT_MOBILE_AREA_CODES; |
||
170 | |||
171 | /** |
||
172 | * Set of country calling codes that have geographically assigned mobile numbers. This may not be |
||
173 | * complete; we add calling codes case by case, as we find geographical mobile numbers or hear |
||
174 | * from user reports. Note that countries like the US, where we can't distinguish between |
||
175 | * fixed-line or mobile numbers, are not listed here, since we consider FIXED_LINE_OR_MOBILE to be |
||
176 | * a possibly geographically-related type anyway (like FIXED_LINE). |
||
177 | * |
||
178 | * @var array |
||
179 | */ |
||
180 | protected static $GEO_MOBILE_COUNTRIES; |
||
181 | |||
182 | /** |
||
183 | * For performance reasons, amalgamate both into one map. |
||
184 | * @var array |
||
185 | */ |
||
186 | protected static $ALPHA_PHONE_MAPPINGS = null; |
||
187 | |||
188 | /** |
||
189 | * Separate map of all symbols that we wish to retain when formatting alpha numbers. This |
||
190 | * includes digits, ASCII letters and number grouping symbols such as "-" and " ". |
||
191 | * @var array |
||
192 | */ |
||
193 | protected static $ALL_PLUS_NUMBER_GROUPING_SYMBOLS; |
||
194 | |||
195 | /** |
||
196 | * Simple ASCII digits map used to populate ALPHA_PHONE_MAPPINGS and |
||
197 | * ALL_PLUS_NUMBER_GROUPING_SYMBOLS. |
||
198 | * @var array |
||
199 | */ |
||
200 | protected static $asciiDigitMappings = array( |
||
201 | '0' => '0', |
||
202 | '1' => '1', |
||
203 | '2' => '2', |
||
204 | '3' => '3', |
||
205 | '4' => '4', |
||
206 | '5' => '5', |
||
207 | '6' => '6', |
||
208 | '7' => '7', |
||
209 | '8' => '8', |
||
210 | '9' => '9', |
||
211 | ); |
||
212 | |||
213 | /** |
||
214 | * Regexp of all possible ways to write extensions, for use when parsing. This will be run as a |
||
215 | * case-insensitive regexp match. Wide character versions are also provided after each ASCII |
||
216 | * version. |
||
217 | * @var String |
||
218 | */ |
||
219 | protected static $EXTN_PATTERNS_FOR_PARSING; |
||
220 | /** |
||
221 | * @var string |
||
222 | * @internal |
||
223 | */ |
||
224 | public static $EXTN_PATTERNS_FOR_MATCHING; |
||
225 | protected static $EXTN_PATTERN = null; |
||
226 | protected static $VALID_PHONE_NUMBER_PATTERN; |
||
227 | protected static $MIN_LENGTH_PHONE_NUMBER_PATTERN; |
||
228 | /** |
||
229 | * Regular expression of viable phone numbers. This is location independent. Checks we have at |
||
230 | * least three leading digits, and only valid punctuation, alpha characters and |
||
231 | * digits in the phone number. Does not include extension data. |
||
232 | * The symbol 'x' is allowed here as valid punctuation since it is often used as a placeholder for |
||
233 | * carrier codes, for example in Brazilian phone numbers. We also allow multiple "+" characters at |
||
234 | * the start. |
||
235 | * Corresponds to the following: |
||
236 | * [digits]{minLengthNsn}| |
||
237 | * plus_sign*(([punctuation]|[star])*[digits]){3,}([punctuation]|[star]|[digits]|[alpha])* |
||
238 | * |
||
239 | * The first reg-ex is to allow short numbers (two digits long) to be parsed if they are entered |
||
240 | * as "15" etc, but only if there is no punctuation in them. The second expression restricts the |
||
241 | * number of digits to three or more, but then allows them to be in international form, and to |
||
242 | * have alpha-characters and punctuation. |
||
243 | * |
||
244 | * Note VALID_PUNCTUATION starts with a -, so must be the first in the range. |
||
245 | * @var string |
||
246 | */ |
||
247 | protected static $VALID_PHONE_NUMBER; |
||
248 | protected static $numericCharacters = array( |
||
249 | "\xef\xbc\x90" => 0, |
||
250 | "\xef\xbc\x91" => 1, |
||
251 | "\xef\xbc\x92" => 2, |
||
252 | "\xef\xbc\x93" => 3, |
||
253 | "\xef\xbc\x94" => 4, |
||
254 | "\xef\xbc\x95" => 5, |
||
255 | "\xef\xbc\x96" => 6, |
||
256 | "\xef\xbc\x97" => 7, |
||
257 | "\xef\xbc\x98" => 8, |
||
258 | "\xef\xbc\x99" => 9, |
||
259 | |||
260 | "\xd9\xa0" => 0, |
||
261 | "\xd9\xa1" => 1, |
||
262 | "\xd9\xa2" => 2, |
||
263 | "\xd9\xa3" => 3, |
||
264 | "\xd9\xa4" => 4, |
||
265 | "\xd9\xa5" => 5, |
||
266 | "\xd9\xa6" => 6, |
||
267 | "\xd9\xa7" => 7, |
||
268 | "\xd9\xa8" => 8, |
||
269 | "\xd9\xa9" => 9, |
||
270 | |||
271 | "\xdb\xb0" => 0, |
||
272 | "\xdb\xb1" => 1, |
||
273 | "\xdb\xb2" => 2, |
||
274 | "\xdb\xb3" => 3, |
||
275 | "\xdb\xb4" => 4, |
||
276 | "\xdb\xb5" => 5, |
||
277 | "\xdb\xb6" => 6, |
||
278 | "\xdb\xb7" => 7, |
||
279 | "\xdb\xb8" => 8, |
||
280 | "\xdb\xb9" => 9, |
||
281 | |||
282 | "\xe1\xa0\x90" => 0, |
||
283 | "\xe1\xa0\x91" => 1, |
||
284 | "\xe1\xa0\x92" => 2, |
||
285 | "\xe1\xa0\x93" => 3, |
||
286 | "\xe1\xa0\x94" => 4, |
||
287 | "\xe1\xa0\x95" => 5, |
||
288 | "\xe1\xa0\x96" => 6, |
||
289 | "\xe1\xa0\x97" => 7, |
||
290 | "\xe1\xa0\x98" => 8, |
||
291 | "\xe1\xa0\x99" => 9, |
||
292 | ); |
||
293 | |||
294 | /** |
||
295 | * The set of county calling codes that map to the non-geo entity region ("001"). |
||
296 | * @var array |
||
297 | */ |
||
298 | protected $countryCodesForNonGeographicalRegion = array(); |
||
299 | /** |
||
300 | * The set of regions the library supports. |
||
301 | * @var array |
||
302 | */ |
||
303 | protected $supportedRegions = array(); |
||
304 | |||
305 | /** |
||
306 | * A mapping from a country calling code to the region codes which denote the region represented |
||
307 | * by that country calling code. In the case of multiple regions sharing a calling code, such as |
||
308 | * the NANPA regions, the one indicated with "isMainCountryForCode" in the metadata should be |
||
309 | * first. |
||
310 | * @var array |
||
311 | */ |
||
312 | protected $countryCallingCodeToRegionCodeMap = array(); |
||
313 | /** |
||
314 | * The set of regions that share country calling code 1. |
||
315 | * @var array |
||
316 | */ |
||
317 | protected $nanpaRegions = array(); |
||
318 | |||
319 | /** |
||
320 | * @var MetadataSourceInterface |
||
321 | */ |
||
322 | protected $metadataSource; |
||
323 | |||
324 | /** |
||
325 | * This class implements a singleton, so the only constructor is protected. |
||
326 | * @param MetadataSourceInterface $metadataSource |
||
327 | * @param $countryCallingCodeToRegionCodeMap |
||
328 | */ |
||
329 | protected function __construct(MetadataSourceInterface $metadataSource, $countryCallingCodeToRegionCodeMap) |
||
388 | |||
389 | /** |
||
390 | * Gets a {@link PhoneNumberUtil} instance to carry out international phone number formatting, |
||
391 | * parsing, or validation. The instance is loaded with phone number metadata for a number of most |
||
392 | * commonly used regions. |
||
393 | * |
||
394 | * <p>The {@link PhoneNumberUtil} is implemented as a singleton. Therefore, calling getInstance |
||
395 | * multiple times will only result in one instance being created. |
||
396 | * |
||
397 | * @param string $baseFileLocation |
||
398 | * @param array|null $countryCallingCodeToRegionCodeMap |
||
399 | * @param MetadataLoaderInterface|null $metadataLoader |
||
400 | * @param MetadataSourceInterface|null $metadataSource |
||
401 | * @return PhoneNumberUtil instance |
||
402 | */ |
||
403 | public static function getInstance($baseFileLocation = self::META_DATA_FILE_PREFIX, array $countryCallingCodeToRegionCodeMap = null, MetadataLoaderInterface $metadataLoader = null, MetadataSourceInterface $metadataSource = null) |
||
422 | |||
423 | protected function init() |
||
445 | |||
446 | /** |
||
447 | * @internal |
||
448 | */ |
||
449 | public static function initCapturingExtnDigits() |
||
453 | |||
454 | /** |
||
455 | * @internal |
||
456 | */ |
||
457 | public static function initExtnPatterns() |
||
469 | |||
470 | /** |
||
471 | * Helper initialiser method to create the regular-expression pattern to match extensions, |
||
472 | * allowing the one-char extension symbols provided by {@code singleExtnSymbols}. |
||
473 | * @param string $singleExtnSymbols |
||
474 | * @return string |
||
475 | */ |
||
476 | protected static function createExtnPattern($singleExtnSymbols) |
||
494 | |||
495 | protected static function initExtnPattern() |
||
499 | |||
500 | protected static function initAlphaPhoneMappings() |
||
504 | |||
505 | protected static function initValidStartCharPattern() |
||
509 | |||
510 | protected static function initMobileTokenMappings() |
||
516 | |||
517 | protected static function initDiallableCharMappings() |
||
524 | |||
525 | /** |
||
526 | * Used for testing purposes only to reset the PhoneNumberUtil singleton to null. |
||
527 | */ |
||
528 | public static function resetInstance() |
||
532 | |||
533 | /** |
||
534 | * Converts all alpha characters in a number to their respective digits on a keypad, but retains |
||
535 | * existing formatting. |
||
536 | * @param string $number |
||
537 | * @return string |
||
538 | */ |
||
539 | public static function convertAlphaCharactersInNumber($number) |
||
547 | |||
548 | /** |
||
549 | * Normalizes a string of characters representing a phone number by replacing all characters found |
||
550 | * in the accompanying map with the values therein, and stripping all other characters if |
||
551 | * removeNonMatches is true. |
||
552 | * |
||
553 | * @param string $number a string of characters representing a phone number |
||
554 | * @param array $normalizationReplacements a mapping of characters to what they should be replaced by in |
||
555 | * the normalized version of the phone number |
||
556 | * @param bool $removeNonMatches indicates whether characters that are not able to be replaced |
||
557 | * should be stripped from the number. If this is false, they will be left unchanged in the number. |
||
558 | * @return string the normalized string version of the phone number |
||
559 | */ |
||
560 | protected static function normalizeHelper($number, array $normalizationReplacements, $removeNonMatches) |
||
577 | |||
578 | /** |
||
579 | * Helper function to check if the national prefix formatting rule has the first group only, i.e., |
||
580 | * does not start with the national prefix. |
||
581 | * @param string $nationalPrefixFormattingRule |
||
582 | * @return bool |
||
583 | */ |
||
584 | public static function formattingRuleHasFirstGroupOnly($nationalPrefixFormattingRule) |
||
594 | |||
595 | /** |
||
596 | * Convenience method to get a list of what regions the library has metadata for. |
||
597 | * @return array |
||
598 | */ |
||
599 | public function getSupportedRegions() |
||
603 | |||
604 | /** |
||
605 | * Convenience method to get a list of what global network calling codes the library has metadata |
||
606 | * for. |
||
607 | * @return array |
||
608 | */ |
||
609 | public function getSupportedGlobalNetworkCallingCodes() |
||
613 | |||
614 | /** |
||
615 | * Gets the length of the geographical area code from the {@code nationalNumber} field of the |
||
616 | * PhoneNumber object passed in, so that clients could use it to split a national significant |
||
617 | * number into geographical area code and subscriber number. It works in such a way that the |
||
618 | * resultant subscriber number should be diallable, at least on some devices. An example of how |
||
619 | * this could be used: |
||
620 | * |
||
621 | * <code> |
||
622 | * $phoneUtil = PhoneNumberUtil::getInstance(); |
||
623 | * $number = $phoneUtil->parse("16502530000", "US"); |
||
624 | * $nationalSignificantNumber = $phoneUtil->getNationalSignificantNumber($number); |
||
625 | * |
||
626 | * $areaCodeLength = $phoneUtil->getLengthOfGeographicalAreaCode($number); |
||
627 | * if ($areaCodeLength > 0) |
||
628 | * { |
||
629 | * $areaCode = substr($nationalSignificantNumber, 0,$areaCodeLength); |
||
630 | * $subscriberNumber = substr($nationalSignificantNumber, $areaCodeLength); |
||
631 | * } else { |
||
632 | * $areaCode = ""; |
||
633 | * $subscriberNumber = $nationalSignificantNumber; |
||
634 | * } |
||
635 | * </code> |
||
636 | * |
||
637 | * N.B.: area code is a very ambiguous concept, so the I18N team generally recommends against |
||
638 | * using it for most purposes, but recommends using the more general {@code nationalNumber} |
||
639 | * instead. Read the following carefully before deciding to use this method: |
||
640 | * <ul> |
||
641 | * <li> geographical area codes change over time, and this method honors those changes; |
||
642 | * therefore, it doesn't guarantee the stability of the result it produces. |
||
643 | * <li> subscriber numbers may not be diallable from all devices (notably mobile devices, which |
||
644 | * typically requires the full national_number to be dialled in most regions). |
||
645 | * <li> most non-geographical numbers have no area codes, including numbers from non-geographical |
||
646 | * entities |
||
647 | * <li> some geographical numbers have no area codes. |
||
648 | * </ul> |
||
649 | * @param PhoneNumber $number PhoneNumber object for which clients want to know the length of the area code. |
||
650 | * @return int the length of area code of the PhoneNumber object passed in. |
||
651 | */ |
||
652 | public function getLengthOfGeographicalAreaCode(PhoneNumber $number) |
||
682 | |||
683 | /** |
||
684 | * Returns the metadata for the given region code or {@code null} if the region code is invalid |
||
685 | * or unknown. |
||
686 | * @param string $regionCode |
||
687 | * @return PhoneMetadata |
||
688 | */ |
||
689 | public function getMetadataForRegion($regionCode) |
||
697 | |||
698 | /** |
||
699 | * Helper function to check region code is not unknown or null. |
||
700 | * @param string $regionCode |
||
701 | * @return bool |
||
702 | */ |
||
703 | protected function isValidRegionCode($regionCode) |
||
707 | |||
708 | /** |
||
709 | * Returns the region where a phone number is from. This could be used for geocoding at the region |
||
710 | * level. |
||
711 | * |
||
712 | * @param PhoneNumber $number the phone number whose origin we want to know |
||
713 | * @return null|string the region where the phone number is from, or null if no region matches this calling |
||
714 | * code |
||
715 | */ |
||
716 | public function getRegionCodeForNumber(PhoneNumber $number) |
||
729 | |||
730 | /** |
||
731 | * @param PhoneNumber $number |
||
732 | * @param array $regionCodes |
||
733 | * @return null|string |
||
734 | */ |
||
735 | protected function getRegionCodeForNumberFromRegionList(PhoneNumber $number, array $regionCodes) |
||
758 | |||
759 | /** |
||
760 | * Gets the national significant number of the a phone number. Note a national significant number |
||
761 | * doesn't contain a national prefix or any formatting. |
||
762 | * |
||
763 | * @param PhoneNumber $number the phone number for which the national significant number is needed |
||
764 | * @return string the national significant number of the PhoneNumber object passed in |
||
765 | */ |
||
766 | public function getNationalSignificantNumber(PhoneNumber $number) |
||
777 | |||
778 | /** |
||
779 | * @param string $nationalNumber |
||
780 | * @param PhoneMetadata $metadata |
||
781 | * @return int PhoneNumberType constant |
||
782 | */ |
||
783 | protected function getNumberTypeHelper($nationalNumber, PhoneMetadata $metadata) |
||
832 | |||
833 | /** |
||
834 | * @param string $nationalNumber |
||
835 | * @param PhoneNumberDesc $numberDesc |
||
836 | * @return bool |
||
837 | */ |
||
838 | public function isNumberMatchingDesc($nationalNumber, PhoneNumberDesc $numberDesc) |
||
853 | |||
854 | /** |
||
855 | * isNumberGeographical(PhoneNumber) |
||
856 | * |
||
857 | * Tests whether a phone number has a geographical association. It checks if the number is |
||
858 | * associated to a certain region in the country where it belongs to. Note that this doesn't |
||
859 | * verify if the number is actually in use. |
||
860 | * |
||
861 | * isNumberGeographical(PhoneNumberType, $countryCallingCode) |
||
862 | * |
||
863 | * Tests whether a phone number has a geographical association, as represented by its type and the |
||
864 | * country it belongs to. |
||
865 | * |
||
866 | * This version exists since calculating the phone number type is expensive; if we have already |
||
867 | * done this, we don't want to do it again. |
||
868 | * |
||
869 | * @param PhoneNumber|int $phoneNumberObjOrType A PhoneNumber object, or a PhoneNumberType integer |
||
870 | * @param int|null $countryCallingCode Used when passing a PhoneNumberType |
||
871 | * @return bool |
||
872 | */ |
||
873 | public function isNumberGeographical($phoneNumberObjOrType, $countryCallingCode = null) |
||
884 | |||
885 | /** |
||
886 | * Gets the type of a phone number. |
||
887 | * @param PhoneNumber $number the number the phone number that we want to know the type |
||
888 | * @return int PhoneNumberType the type of the phone number |
||
889 | */ |
||
890 | public function getNumberType(PhoneNumber $number) |
||
900 | |||
901 | /** |
||
902 | * @param int $countryCallingCode |
||
903 | * @param string $regionCode |
||
904 | * @return PhoneMetadata |
||
905 | */ |
||
906 | protected function getMetadataForRegionOrCallingCode($countryCallingCode, $regionCode) |
||
911 | |||
912 | /** |
||
913 | * @param int $countryCallingCode |
||
914 | * @return PhoneMetadata |
||
915 | */ |
||
916 | public function getMetadataForNonGeographicalRegion($countryCallingCode) |
||
923 | |||
924 | /** |
||
925 | * Gets the length of the national destination code (NDC) from the PhoneNumber object passed in, |
||
926 | * so that clients could use it to split a national significant number into NDC and subscriber |
||
927 | * number. The NDC of a phone number is normally the first group of digit(s) right after the |
||
928 | * country calling code when the number is formatted in the international format, if there is a |
||
929 | * subscriber number part that follows. An example of how this could be used: |
||
930 | * |
||
931 | * <code> |
||
932 | * $phoneUtil = PhoneNumberUtil::getInstance(); |
||
933 | * $number = $phoneUtil->parse("18002530000", "US"); |
||
934 | * $nationalSignificantNumber = $phoneUtil->getNationalSignificantNumber($number); |
||
935 | * |
||
936 | * $nationalDestinationCodeLength = $phoneUtil->getLengthOfNationalDestinationCode($number); |
||
937 | * if ($nationalDestinationCodeLength > 0) { |
||
938 | * $nationalDestinationCode = substr($nationalSignificantNumber, 0, $nationalDestinationCodeLength); |
||
939 | * $subscriberNumber = substr($nationalSignificantNumber, $nationalDestinationCodeLength); |
||
940 | * } else { |
||
941 | * $nationalDestinationCode = ""; |
||
942 | * $subscriberNumber = $nationalSignificantNumber; |
||
943 | * } |
||
944 | * </code> |
||
945 | * |
||
946 | * Refer to the unit tests to see the difference between this function and |
||
947 | * {@link #getLengthOfGeographicalAreaCode}. |
||
948 | * |
||
949 | * @param PhoneNumber $number the PhoneNumber object for which clients want to know the length of the NDC. |
||
950 | * @return int the length of NDC of the PhoneNumber object passed in. |
||
951 | */ |
||
952 | public function getLengthOfNationalDestinationCode(PhoneNumber $number) |
||
989 | |||
990 | /** |
||
991 | * Formats a phone number in the specified format using default rules. Note that this does not |
||
992 | * promise to produce a phone number that the user can dial from where they are - although we do |
||
993 | * format in either 'national' or 'international' format depending on what the client asks for, we |
||
994 | * do not currently support a more abbreviated format, such as for users in the same "area" who |
||
995 | * could potentially dial the number without area code. Note that if the phone number has a |
||
996 | * country calling code of 0 or an otherwise invalid country calling code, we cannot work out |
||
997 | * which formatting rules to apply so we return the national significant number with no formatting |
||
998 | * applied. |
||
999 | * |
||
1000 | * @param PhoneNumber $number the phone number to be formatted |
||
1001 | * @param int $numberFormat the PhoneNumberFormat the phone number should be formatted into |
||
1002 | * @return string the formatted phone number |
||
1003 | */ |
||
1004 | public function format(PhoneNumber $number, $numberFormat) |
||
1047 | |||
1048 | /** |
||
1049 | * A helper function that is used by format and formatByPattern. |
||
1050 | * @param int $countryCallingCode |
||
1051 | * @param int $numberFormat PhoneNumberFormat |
||
1052 | * @param string $formattedNumber |
||
1053 | */ |
||
1054 | protected function prefixNumberWithCountryCallingCode($countryCallingCode, $numberFormat, &$formattedNumber) |
||
1071 | |||
1072 | /** |
||
1073 | * Helper function to check the country calling code is valid. |
||
1074 | * @param int $countryCallingCode |
||
1075 | * @return bool |
||
1076 | */ |
||
1077 | protected function hasValidCountryCallingCode($countryCallingCode) |
||
1081 | |||
1082 | /** |
||
1083 | * Returns the region code that matches the specific country calling code. In the case of no |
||
1084 | * region code being found, ZZ will be returned. In the case of multiple regions, the one |
||
1085 | * designated in the metadata as the "main" region for this calling code will be returned. If the |
||
1086 | * countryCallingCode entered is valid but doesn't match a specific region (such as in the case of |
||
1087 | * non-geographical calling codes like 800) the value "001" will be returned (corresponding to |
||
1088 | * the value for World in the UN M.49 schema). |
||
1089 | * |
||
1090 | * @param int $countryCallingCode |
||
1091 | * @return string |
||
1092 | */ |
||
1093 | public function getRegionCodeForCountryCode($countryCallingCode) |
||
1098 | |||
1099 | /** |
||
1100 | * Note in some regions, the national number can be written in two completely different ways |
||
1101 | * depending on whether it forms part of the NATIONAL format or INTERNATIONAL format. The |
||
1102 | * numberFormat parameter here is used to specify which format to use for those cases. If a |
||
1103 | * carrierCode is specified, this will be inserted into the formatted string to replace $CC. |
||
1104 | * @param string $number |
||
1105 | * @param PhoneMetadata $metadata |
||
1106 | * @param int $numberFormat PhoneNumberFormat |
||
1107 | * @param null|string $carrierCode |
||
1108 | * @return string |
||
1109 | */ |
||
1110 | protected function formatNsn($number, PhoneMetadata $metadata, $numberFormat, $carrierCode = null) |
||
1123 | |||
1124 | /** |
||
1125 | * @param NumberFormat[] $availableFormats |
||
1126 | * @param string $nationalNumber |
||
1127 | * @return NumberFormat|null |
||
1128 | */ |
||
1129 | public function chooseFormattingPatternForNumber(array $availableFormats, $nationalNumber) |
||
1150 | |||
1151 | /** |
||
1152 | * Note that carrierCode is optional - if null or an empty string, no carrier code replacement |
||
1153 | * will take place. |
||
1154 | * @param string $nationalNumber |
||
1155 | * @param NumberFormat $formattingPattern |
||
1156 | * @param int $numberFormat PhoneNumberFormat |
||
1157 | * @param null|string $carrierCode |
||
1158 | * @return string |
||
1159 | */ |
||
1160 | public function formatNsnUsingPattern( |
||
1207 | |||
1208 | /** |
||
1209 | * Appends the formatted extension of a phone number to formattedNumber, if the phone number had |
||
1210 | * an extension specified. |
||
1211 | * |
||
1212 | * @param PhoneNumber $number |
||
1213 | * @param PhoneMetadata|null $metadata |
||
1214 | * @param int $numberFormat PhoneNumberFormat |
||
1215 | * @param string $formattedNumber |
||
1216 | */ |
||
1217 | protected function maybeAppendFormattedExtension(PhoneNumber $number, $metadata, $numberFormat, &$formattedNumber) |
||
1231 | |||
1232 | /** |
||
1233 | * Returns the mobile token for the provided country calling code if it has one, otherwise |
||
1234 | * returns an empty string. A mobile token is a number inserted before the area code when dialing |
||
1235 | * a mobile number from that country from abroad. |
||
1236 | * |
||
1237 | * @param int $countryCallingCode the country calling code for which we want the mobile token |
||
1238 | * @return string the mobile token, as a string, for the given country calling code |
||
1239 | */ |
||
1240 | public static function getCountryMobileToken($countryCallingCode) |
||
1251 | |||
1252 | /** |
||
1253 | * Checks if the number is a valid vanity (alpha) number such as 800 MICROSOFT. A valid vanity |
||
1254 | * number will start with at least 3 digits and will have three or more alpha characters. This |
||
1255 | * does not do region-specific checks - to work out if this number is actually valid for a region, |
||
1256 | * it should be parsed and methods such as {@link #isPossibleNumberWithReason} and |
||
1257 | * {@link #isValidNumber} should be used. |
||
1258 | * |
||
1259 | * @param string $number the number that needs to be checked |
||
1260 | * @return bool true if the number is a valid vanity number |
||
1261 | */ |
||
1262 | public function isAlphaNumber($number) |
||
1271 | |||
1272 | /** |
||
1273 | * Checks to see if the string of characters could possibly be a phone number at all. At the |
||
1274 | * moment, checks to see that the string begins with at least 2 digits, ignoring any punctuation |
||
1275 | * commonly found in phone numbers. |
||
1276 | * This method does not require the number to be normalized in advance - but does assume that |
||
1277 | * leading non-number symbols have been removed, such as by the method extractPossibleNumber. |
||
1278 | * |
||
1279 | * @param string $number to be checked for viability as a phone number |
||
1280 | * @return boolean true if the number could be a phone number of some sort, otherwise false |
||
1281 | */ |
||
1282 | public static function isViablePhoneNumber($number) |
||
1293 | |||
1294 | /** |
||
1295 | * We append optionally the extension pattern to the end here, as a valid phone number may |
||
1296 | * have an extension prefix appended, followed by 1 or more digits. |
||
1297 | * @return string |
||
1298 | */ |
||
1299 | protected static function getValidPhoneNumberPattern() |
||
1303 | |||
1304 | /** |
||
1305 | * Strips any extension (as in, the part of the number dialled after the call is connected, |
||
1306 | * usually indicated with extn, ext, x or similar) from the end of the number, and returns it. |
||
1307 | * |
||
1308 | * @param string $number the non-normalized telephone number that we wish to strip the extension from |
||
1309 | * @return string the phone extension |
||
1310 | */ |
||
1311 | protected function maybeStripExtension(&$number) |
||
1332 | |||
1333 | /** |
||
1334 | * Parses a string and returns it in proto buffer format. This method differs from {@link #parse} |
||
1335 | * in that it always populates the raw_input field of the protocol buffer with numberToParse as |
||
1336 | * well as the country_code_source field. |
||
1337 | * |
||
1338 | * @param string $numberToParse number that we are attempting to parse. This can contain formatting |
||
1339 | * such as +, ( and -, as well as a phone number extension. It can also |
||
1340 | * be provided in RFC3966 format. |
||
1341 | * @param string $defaultRegion region that we are expecting the number to be from. This is only used |
||
1342 | * if the number being parsed is not written in international format. |
||
1343 | * The country calling code for the number in this case would be stored |
||
1344 | * as that of the default region supplied. |
||
1345 | * @param PhoneNumber $phoneNumber |
||
1346 | * @return PhoneNumber a phone number proto buffer filled with the parsed number |
||
1347 | */ |
||
1348 | public function parseAndKeepRawInput($numberToParse, $defaultRegion, PhoneNumber $phoneNumber = null) |
||
1356 | |||
1357 | /** |
||
1358 | * Returns an iterable over all PhoneNumberMatches in $text |
||
1359 | * |
||
1360 | * @param string $text |
||
1361 | * @param string $defaultRegion |
||
1362 | * @param AbstractLeniency $leniency Defaults to Leniency::VALID() |
||
1363 | * @param int $maxTries Defaults to PHP_INT_MAX |
||
1364 | * @return PhoneNumberMatcher |
||
1365 | */ |
||
1366 | public function findNumbers($text, $defaultRegion, AbstractLeniency $leniency = null, $maxTries = PHP_INT_MAX) |
||
1374 | |||
1375 | /** |
||
1376 | * A helper function to set the values related to leading zeros in a PhoneNumber. |
||
1377 | * @param string $nationalNumber |
||
1378 | * @param PhoneNumber $phoneNumber |
||
1379 | */ |
||
1380 | public static function setItalianLeadingZerosForPhoneNumber($nationalNumber, PhoneNumber $phoneNumber) |
||
1397 | |||
1398 | /** |
||
1399 | * Parses a string and fills up the phoneNumber. This method is the same as the public |
||
1400 | * parse() method, with the exception that it allows the default region to be null, for use by |
||
1401 | * isNumberMatch(). checkRegion should be set to false if it is permitted for the default region |
||
1402 | * to be null or unknown ("ZZ"). |
||
1403 | * @param string $numberToParse |
||
1404 | * @param string $defaultRegion |
||
1405 | * @param bool $keepRawInput |
||
1406 | * @param bool $checkRegion |
||
1407 | * @param PhoneNumber $phoneNumber |
||
1408 | * @throws NumberParseException |
||
1409 | */ |
||
1410 | protected function parseHelper($numberToParse, $defaultRegion, $keepRawInput, $checkRegion, PhoneNumber $phoneNumber) |
||
1559 | |||
1560 | /** |
||
1561 | * Returns a new phone number containing only the fields needed to uniquely identify a phone |
||
1562 | * number, rather than any fields that capture the context in which the phone number was created. |
||
1563 | * These fields correspond to those set in parse() rather than parseHelper() |
||
1564 | * |
||
1565 | * @param PhoneNumber $phoneNumberIn |
||
1566 | * @return PhoneNumber |
||
1567 | */ |
||
1568 | private static function copyCoreFieldsOnly(PhoneNumber $phoneNumberIn) |
||
1583 | |||
1584 | /** |
||
1585 | * Converts numberToParse to a form that we can parse and write it to nationalNumber if it is |
||
1586 | * written in RFC3966; otherwise extract a possible number out of it and write to nationalNumber. |
||
1587 | * @param string $numberToParse |
||
1588 | * @param string $nationalNumber |
||
1589 | */ |
||
1590 | protected function buildNationalNumberForParsing($numberToParse, &$nationalNumber) |
||
1634 | |||
1635 | /** |
||
1636 | * Attempts to extract a possible number from the string passed in. This currently strips all |
||
1637 | * leading characters that cannot be used to start a phone number. Characters that can be used to |
||
1638 | * start a phone number are defined in the VALID_START_CHAR_PATTERN. If none of these characters |
||
1639 | * are found in the number passed in, an empty string is returned. This function also attempts to |
||
1640 | * strip off any alternative extensions or endings if two or more are present, such as in the case |
||
1641 | * of: (530) 583-6985 x302/x2303. The second extension here makes this actually two phone numbers, |
||
1642 | * (530) 583-6985 x302 and (530) 583-6985 x2303. We remove the second extension so that the first |
||
1643 | * number is parsed correctly. |
||
1644 | * |
||
1645 | * @param int $number the string that might contain a phone number |
||
1646 | * @return string the number, stripped of any non-phone-number prefix (such as "Tel:") or an empty |
||
1647 | * string if no character used to start phone numbers (such as + or any digit) is |
||
1648 | * found in the number |
||
1649 | */ |
||
1650 | public static function extractPossibleNumber($number) |
||
1677 | |||
1678 | /** |
||
1679 | * Checks to see that the region code used is valid, or if it is not valid, that the number to |
||
1680 | * parse starts with a + symbol so that we can attempt to infer the region from the number. |
||
1681 | * Returns false if it cannot use the region provided and the region cannot be inferred. |
||
1682 | * @param string $numberToParse |
||
1683 | * @param string $defaultRegion |
||
1684 | * @return bool |
||
1685 | */ |
||
1686 | protected function checkRegionForParsing($numberToParse, $defaultRegion) |
||
1697 | |||
1698 | /** |
||
1699 | * Tries to extract a country calling code from a number. This method will return zero if no |
||
1700 | * country calling code is considered to be present. Country calling codes are extracted in the |
||
1701 | * following ways: |
||
1702 | * <ul> |
||
1703 | * <li> by stripping the international dialing prefix of the region the person is dialing from, |
||
1704 | * if this is present in the number, and looking at the next digits |
||
1705 | * <li> by stripping the '+' sign if present and then looking at the next digits |
||
1706 | * <li> by comparing the start of the number and the country calling code of the default region. |
||
1707 | * If the number is not considered possible for the numbering plan of the default region |
||
1708 | * initially, but starts with the country calling code of this region, validation will be |
||
1709 | * reattempted after stripping this country calling code. If this number is considered a |
||
1710 | * possible number, then the first digits will be considered the country calling code and |
||
1711 | * removed as such. |
||
1712 | * </ul> |
||
1713 | * It will throw a NumberParseException if the number starts with a '+' but the country calling |
||
1714 | * code supplied after this does not match that of any known region. |
||
1715 | * |
||
1716 | * @param string $number non-normalized telephone number that we wish to extract a country calling |
||
1717 | * code from - may begin with '+' |
||
1718 | * @param PhoneMetadata $defaultRegionMetadata metadata about the region this number may be from |
||
1719 | * @param string $nationalNumber a string buffer to store the national significant number in, in the case |
||
1720 | * that a country calling code was extracted. The number is appended to any existing contents. |
||
1721 | * If no country calling code was extracted, this will be left unchanged. |
||
1722 | * @param bool $keepRawInput true if the country_code_source and preferred_carrier_code fields of |
||
1723 | * phoneNumber should be populated. |
||
1724 | * @param PhoneNumber $phoneNumber the PhoneNumber object where the country_code and country_code_source need |
||
1725 | * to be populated. Note the country_code is always populated, whereas country_code_source is |
||
1726 | * only populated when keepCountryCodeSource is true. |
||
1727 | * @return int the country calling code extracted or 0 if none could be extracted |
||
1728 | * @throws NumberParseException |
||
1729 | */ |
||
1730 | public function maybeExtractCountryCode( |
||
1809 | |||
1810 | /** |
||
1811 | * Strips any international prefix (such as +, 00, 011) present in the number provided, normalizes |
||
1812 | * the resulting number, and indicates if an international prefix was present. |
||
1813 | * |
||
1814 | * @param string $number the non-normalized telephone number that we wish to strip any international |
||
1815 | * dialing prefix from. |
||
1816 | * @param string $possibleIddPrefix string the international direct dialing prefix from the region we |
||
1817 | * think this number may be dialed in |
||
1818 | * @return int the corresponding CountryCodeSource if an international dialing prefix could be |
||
1819 | * removed from the number, otherwise CountryCodeSource.FROM_DEFAULT_COUNTRY if the number did |
||
1820 | * not seem to be in international format. |
||
1821 | */ |
||
1822 | public function maybeStripInternationalPrefixAndNormalize(&$number, $possibleIddPrefix) |
||
1843 | |||
1844 | /** |
||
1845 | * Normalizes a string of characters representing a phone number. This performs |
||
1846 | * the following conversions: |
||
1847 | * Punctuation is stripped. |
||
1848 | * For ALPHA/VANITY numbers: |
||
1849 | * Letters are converted to their numeric representation on a telephone |
||
1850 | * keypad. The keypad used here is the one defined in ITU Recommendation |
||
1851 | * E.161. This is only done if there are 3 or more letters in the number, |
||
1852 | * to lessen the risk that such letters are typos. |
||
1853 | * For other numbers: |
||
1854 | * Wide-ascii digits are converted to normal ASCII (European) digits. |
||
1855 | * Arabic-Indic numerals are converted to European numerals. |
||
1856 | * Spurious alpha characters are stripped. |
||
1857 | * |
||
1858 | * @param string $number a string of characters representing a phone number. |
||
1859 | * @return string the normalized string version of the phone number. |
||
1860 | */ |
||
1861 | public static function normalize(&$number) |
||
1874 | |||
1875 | /** |
||
1876 | * Normalizes a string of characters representing a phone number. This converts wide-ascii and |
||
1877 | * arabic-indic numerals to European numerals, and strips punctuation and alpha characters. |
||
1878 | * |
||
1879 | * @param $number string a string of characters representing a phone number |
||
1880 | * @return string the normalized string version of the phone number |
||
1881 | */ |
||
1882 | public static function normalizeDigitsOnly($number) |
||
1886 | |||
1887 | /** |
||
1888 | * @param string $number |
||
1889 | * @param bool $keepNonDigits |
||
1890 | * @return string |
||
1891 | */ |
||
1892 | public static function normalizeDigits($number, $keepNonDigits) |
||
1908 | |||
1909 | /** |
||
1910 | * Strips the IDD from the start of the number if present. Helper function used by |
||
1911 | * maybeStripInternationalPrefixAndNormalize. |
||
1912 | * @param string $iddPattern |
||
1913 | * @param string $number |
||
1914 | * @return bool |
||
1915 | */ |
||
1916 | protected function parsePrefixAsIdd($iddPattern, &$number) |
||
1935 | |||
1936 | /** |
||
1937 | * Extracts country calling code from fullNumber, returns it and places the remaining number in nationalNumber. |
||
1938 | * It assumes that the leading plus sign or IDD has already been removed. |
||
1939 | * Returns 0 if fullNumber doesn't start with a valid country calling code, and leaves nationalNumber unmodified. |
||
1940 | * @param string $fullNumber |
||
1941 | * @param string $nationalNumber |
||
1942 | * @return int |
||
1943 | */ |
||
1944 | protected function extractCountryCode(&$fullNumber, &$nationalNumber) |
||
1960 | |||
1961 | /** |
||
1962 | * Strips any national prefix (such as 0, 1) present in the number provided. |
||
1963 | * |
||
1964 | * @param string $number the normalized telephone number that we wish to strip any national |
||
1965 | * dialing prefix from |
||
1966 | * @param PhoneMetadata $metadata the metadata for the region that we think this number is from |
||
1967 | * @param string $carrierCode a place to insert the carrier code if one is extracted |
||
1968 | * @return bool true if a national prefix or carrier code (or both) could be extracted. |
||
1969 | */ |
||
1970 | public function maybeStripNationalPrefixAndCarrierCode(&$number, PhoneMetadata $metadata, &$carrierCode) |
||
2029 | |||
2030 | /** |
||
2031 | * Helper method to check a number against possible lengths for this number, and determine whether |
||
2032 | * it matches, or is too short or too long. Currently, if a number pattern suggests that numbers |
||
2033 | * of length 7 and 10 are possible, and a number in between these possible lengths is entered, |
||
2034 | * such as of length 8, this will return TOO_LONG. |
||
2035 | * @param string $number |
||
2036 | * @param PhoneNumberDesc $phoneNumberDesc |
||
2037 | * @return int ValidationResult |
||
2038 | */ |
||
2039 | protected function testNumberLength($number, PhoneNumberDesc $phoneNumberDesc) |
||
2069 | |||
2070 | /** |
||
2071 | * Returns a list with the region codes that match the specific country calling code. For |
||
2072 | * non-geographical country calling codes, the region code 001 is returned. Also, in the case |
||
2073 | * of no region code being found, an empty list is returned. |
||
2074 | * @param int $countryCallingCode |
||
2075 | * @return array |
||
2076 | */ |
||
2077 | public function getRegionCodesForCountryCode($countryCallingCode) |
||
2082 | |||
2083 | /** |
||
2084 | * Returns the country calling code for a specific region. For example, this would be 1 for the |
||
2085 | * United States, and 64 for New Zealand. Assumes the region is already valid. |
||
2086 | * |
||
2087 | * @param string $regionCode the region that we want to get the country calling code for |
||
2088 | * @return int the country calling code for the region denoted by regionCode |
||
2089 | */ |
||
2090 | public function getCountryCodeForRegion($regionCode) |
||
2097 | |||
2098 | /** |
||
2099 | * Returns the country calling code for a specific region. For example, this would be 1 for the |
||
2100 | * United States, and 64 for New Zealand. Assumes the region is already valid. |
||
2101 | * |
||
2102 | * @param string $regionCode the region that we want to get the country calling code for |
||
2103 | * @return int the country calling code for the region denoted by regionCode |
||
2104 | * @throws \InvalidArgumentException if the region is invalid |
||
2105 | */ |
||
2106 | protected function getCountryCodeForValidRegion($regionCode) |
||
2114 | |||
2115 | /** |
||
2116 | * Returns a number formatted in such a way that it can be dialed from a mobile phone in a |
||
2117 | * specific region. If the number cannot be reached from the region (e.g. some countries block |
||
2118 | * toll-free numbers from being called outside of the country), the method returns an empty |
||
2119 | * string. |
||
2120 | * |
||
2121 | * @param PhoneNumber $number the phone number to be formatted |
||
2122 | * @param string $regionCallingFrom the region where the call is being placed |
||
2123 | * @param boolean $withFormatting whether the number should be returned with formatting symbols, such as |
||
2124 | * spaces and dashes. |
||
2125 | * @return string the formatted phone number |
||
2126 | */ |
||
2127 | public function formatNumberForMobileDialing(PhoneNumber $number, $regionCallingFrom, $withFormatting) |
||
2213 | |||
2214 | /** |
||
2215 | * Formats a phone number in national format for dialing using the carrier as specified in the |
||
2216 | * {@code carrierCode}. The {@code carrierCode} will always be used regardless of whether the |
||
2217 | * phone number already has a preferred domestic carrier code stored. If {@code carrierCode} |
||
2218 | * contains an empty string, returns the number in national format without any carrier code. |
||
2219 | * |
||
2220 | * @param PhoneNumber $number the phone number to be formatted |
||
2221 | * @param string $carrierCode the carrier selection code to be used |
||
2222 | * @return string the formatted phone number in national format for dialing using the carrier as |
||
2223 | * specified in the {@code carrierCode} |
||
2224 | */ |
||
2225 | public function formatNationalNumberWithCarrierCode(PhoneNumber $number, $carrierCode) |
||
2254 | |||
2255 | /** |
||
2256 | * Formats a phone number in national format for dialing using the carrier as specified in the |
||
2257 | * preferredDomesticCarrierCode field of the PhoneNumber object passed in. If that is missing, |
||
2258 | * use the {@code fallbackCarrierCode} passed in instead. If there is no |
||
2259 | * {@code preferredDomesticCarrierCode}, and the {@code fallbackCarrierCode} contains an empty |
||
2260 | * string, return the number in national format without any carrier code. |
||
2261 | * |
||
2262 | * <p>Use {@link #formatNationalNumberWithCarrierCode} instead if the carrier code passed in |
||
2263 | * should take precedence over the number's {@code preferredDomesticCarrierCode} when formatting. |
||
2264 | * |
||
2265 | * @param PhoneNumber $number the phone number to be formatted |
||
2266 | * @param string $fallbackCarrierCode the carrier selection code to be used, if none is found in the |
||
2267 | * phone number itself |
||
2268 | * @return string the formatted phone number in national format for dialing using the number's |
||
2269 | * {@code preferredDomesticCarrierCode}, or the {@code fallbackCarrierCode} passed in if |
||
2270 | * none is found |
||
2271 | */ |
||
2272 | public function formatNationalNumberWithPreferredCarrierCode(PhoneNumber $number, $fallbackCarrierCode) |
||
2284 | |||
2285 | /** |
||
2286 | * Returns true if the number can be dialled from outside the region, or unknown. If the number |
||
2287 | * can only be dialled from within the region, returns false. Does not check the number is a valid |
||
2288 | * number. |
||
2289 | * TODO: Make this method public when we have enough metadata to make it worthwhile. |
||
2290 | * |
||
2291 | * @param PhoneNumber $number the phone-number for which we want to know whether it is diallable from outside the region |
||
2292 | * @return bool |
||
2293 | */ |
||
2294 | public function canBeInternationallyDialled(PhoneNumber $number) |
||
2305 | |||
2306 | /** |
||
2307 | * Normalizes a string of characters representing a phone number. This strips all characters which |
||
2308 | * are not diallable on a mobile phone keypad (including all non-ASCII digits). |
||
2309 | * |
||
2310 | * @param string $number a string of characters representing a phone number |
||
2311 | * @return string the normalized string version of the phone number |
||
2312 | */ |
||
2313 | public static function normalizeDiallableCharsOnly($number) |
||
2321 | |||
2322 | /** |
||
2323 | * Formats a phone number for out-of-country dialing purposes. |
||
2324 | * |
||
2325 | * Note that in this version, if the number was entered originally using alpha characters and |
||
2326 | * this version of the number is stored in raw_input, this representation of the number will be |
||
2327 | * used rather than the digit representation. Grouping information, as specified by characters |
||
2328 | * such as "-" and " ", will be retained. |
||
2329 | * |
||
2330 | * <p><b>Caveats:</b></p> |
||
2331 | * <ul> |
||
2332 | * <li> This will not produce good results if the country calling code is both present in the raw |
||
2333 | * input _and_ is the start of the national number. This is not a problem in the regions |
||
2334 | * which typically use alpha numbers. |
||
2335 | * <li> This will also not produce good results if the raw input has any grouping information |
||
2336 | * within the first three digits of the national number, and if the function needs to strip |
||
2337 | * preceding digits/words in the raw input before these digits. Normally people group the |
||
2338 | * first three digits together so this is not a huge problem - and will be fixed if it |
||
2339 | * proves to be so. |
||
2340 | * </ul> |
||
2341 | * |
||
2342 | * @param PhoneNumber $number the phone number that needs to be formatted |
||
2343 | * @param String $regionCallingFrom the region where the call is being placed |
||
2344 | * @return String the formatted phone number |
||
2345 | */ |
||
2346 | public function formatOutOfCountryKeepingAlphaChars(PhoneNumber $number, $regionCallingFrom) |
||
2439 | |||
2440 | /** |
||
2441 | * Formats a phone number for out-of-country dialing purposes. If no regionCallingFrom is |
||
2442 | * supplied, we format the number in its INTERNATIONAL format. If the country calling code is the |
||
2443 | * same as that of the region where the number is from, then NATIONAL formatting will be applied. |
||
2444 | * |
||
2445 | * <p>If the number itself has a country calling code of zero or an otherwise invalid country |
||
2446 | * calling code, then we return the number with no formatting applied. |
||
2447 | * |
||
2448 | * <p>Note this function takes care of the case for calling inside of NANPA and between Russia and |
||
2449 | * Kazakhstan (who share the same country calling code). In those cases, no international prefix |
||
2450 | * is used. For regions which have multiple international prefixes, the number in its |
||
2451 | * INTERNATIONAL format will be returned instead. |
||
2452 | * |
||
2453 | * @param PhoneNumber $number the phone number to be formatted |
||
2454 | * @param string $regionCallingFrom the region where the call is being placed |
||
2455 | * @return string the formatted phone number |
||
2456 | */ |
||
2457 | public function formatOutOfCountryCallingNumber(PhoneNumber $number, $regionCallingFrom) |
||
2524 | |||
2525 | /** |
||
2526 | * Checks if this is a region under the North American Numbering Plan Administration (NANPA). |
||
2527 | * @param string $regionCode |
||
2528 | * @return boolean true if regionCode is one of the regions under NANPA |
||
2529 | */ |
||
2530 | public function isNANPACountry($regionCode) |
||
2534 | |||
2535 | /** |
||
2536 | * Formats a phone number using the original phone number format that the number is parsed from. |
||
2537 | * The original format is embedded in the country_code_source field of the PhoneNumber object |
||
2538 | * passed in. If such information is missing, the number will be formatted into the NATIONAL |
||
2539 | * format by default. When the number contains a leading zero and this is unexpected for this |
||
2540 | * country, or we don't have a formatting pattern for the number, the method returns the raw input |
||
2541 | * when it is available. |
||
2542 | * |
||
2543 | * Note this method guarantees no digit will be inserted, removed or modified as a result of |
||
2544 | * formatting. |
||
2545 | * |
||
2546 | * @param PhoneNumber $number the phone number that needs to be formatted in its original number format |
||
2547 | * @param string $regionCallingFrom the region whose IDD needs to be prefixed if the original number |
||
2548 | * has one |
||
2549 | * @return string the formatted phone number in its original number format |
||
2550 | */ |
||
2551 | public function formatInOriginalFormat(PhoneNumber $number, $regionCallingFrom) |
||
2649 | |||
2650 | /** |
||
2651 | * Returns true if a number is from a region whose national significant number couldn't contain a |
||
2652 | * leading zero, but has the italian_leading_zero field set to true. |
||
2653 | * @param PhoneNumber $number |
||
2654 | * @return bool |
||
2655 | */ |
||
2656 | protected function hasUnexpectedItalianLeadingZero(PhoneNumber $number) |
||
2660 | |||
2661 | /** |
||
2662 | * Checks whether the country calling code is from a region whose national significant number |
||
2663 | * could contain a leading zero. An example of such a region is Italy. Returns false if no |
||
2664 | * metadata for the country is found. |
||
2665 | * @param int $countryCallingCode |
||
2666 | * @return bool |
||
2667 | */ |
||
2668 | public function isLeadingZeroPossible($countryCallingCode) |
||
2679 | |||
2680 | /** |
||
2681 | * @param PhoneNumber $number |
||
2682 | * @return bool |
||
2683 | */ |
||
2684 | protected function hasFormattingPatternForNumber(PhoneNumber $number) |
||
2696 | |||
2697 | /** |
||
2698 | * Returns the national dialling prefix for a specific region. For example, this would be 1 for |
||
2699 | * the United States, and 0 for New Zealand. Set stripNonDigits to true to strip symbols like "~" |
||
2700 | * (which indicates a wait for a dialling tone) from the prefix returned. If no national prefix is |
||
2701 | * present, we return null. |
||
2702 | * |
||
2703 | * <p>Warning: Do not use this method for do-your-own formatting - for some regions, the |
||
2704 | * national dialling prefix is used only for certain types of numbers. Use the library's |
||
2705 | * formatting functions to prefix the national prefix when required. |
||
2706 | * |
||
2707 | * @param string $regionCode the region that we want to get the dialling prefix for |
||
2708 | * @param boolean $stripNonDigits true to strip non-digits from the national dialling prefix |
||
2709 | * @return string the dialling prefix for the region denoted by regionCode |
||
2710 | */ |
||
2711 | public function getNddPrefixForRegion($regionCode, $stripNonDigits) |
||
2729 | |||
2730 | /** |
||
2731 | * Check if rawInput, which is assumed to be in the national format, has a national prefix. The |
||
2732 | * national prefix is assumed to be in digits-only form. |
||
2733 | * @param string $rawInput |
||
2734 | * @param string $nationalPrefix |
||
2735 | * @param string $regionCode |
||
2736 | * @return bool |
||
2737 | */ |
||
2738 | protected function rawInputContainsNationalPrefix($rawInput, $nationalPrefix, $regionCode) |
||
2756 | |||
2757 | /** |
||
2758 | * Tests whether a phone number matches a valid pattern. Note this doesn't verify the number |
||
2759 | * is actually in use, which is impossible to tell by just looking at a number itself. It only |
||
2760 | * verifies whether the parsed, canonicalised number is valid: not whether a particular series of |
||
2761 | * digits entered by the user is diallable from the region provided when parsing. For example, the |
||
2762 | * number +41 (0) 78 927 2696 can be parsed into a number with country code "41" and national |
||
2763 | * significant number "789272696". This is valid, while the original string is not diallable. |
||
2764 | * |
||
2765 | * @param PhoneNumber $number the phone number that we want to validate |
||
2766 | * @return boolean that indicates whether the number is of a valid pattern |
||
2767 | */ |
||
2768 | public function isValidNumber(PhoneNumber $number) |
||
2773 | |||
2774 | /** |
||
2775 | * Tests whether a phone number is valid for a certain region. Note this doesn't verify the number |
||
2776 | * is actually in use, which is impossible to tell by just looking at a number itself. If the |
||
2777 | * country calling code is not the same as the country calling code for the region, this |
||
2778 | * immediately exits with false. After this, the specific number pattern rules for the region are |
||
2779 | * examined. This is useful for determining for example whether a particular number is valid for |
||
2780 | * Canada, rather than just a valid NANPA number. |
||
2781 | * Warning: In most cases, you want to use {@link #isValidNumber} instead. For example, this |
||
2782 | * method will mark numbers from British Crown dependencies such as the Isle of Man as invalid for |
||
2783 | * the region "GB" (United Kingdom), since it has its own region code, "IM", which may be |
||
2784 | * undesirable. |
||
2785 | * |
||
2786 | * @param PhoneNumber $number the phone number that we want to validate |
||
2787 | * @param string $regionCode the region that we want to validate the phone number for |
||
2788 | * @return boolean that indicates whether the number is of a valid pattern |
||
2789 | */ |
||
2790 | public function isValidNumberForRegion(PhoneNumber $number, $regionCode) |
||
2806 | |||
2807 | /** |
||
2808 | * Parses a string and returns it as a phone number in proto buffer format. The method is quite |
||
2809 | * lenient and looks for a number in the input text (raw input) and does not check whether the |
||
2810 | * string is definitely only a phone number. To do this, it ignores punctuation and white-space, |
||
2811 | * as well as any text before the number (e.g. a leading “Tel: ”) and trims the non-number bits. |
||
2812 | * It will accept a number in any format (E164, national, international etc), assuming it can |
||
2813 | * interpreted with the defaultRegion supplied. It also attempts to convert any alpha characters |
||
2814 | * into digits if it thinks this is a vanity number of the type "1800 MICROSOFT". |
||
2815 | * |
||
2816 | * <p> This method will throw a {@link NumberParseException} if the number is not considered to |
||
2817 | * be a possible number. Note that validation of whether the number is actually a valid number |
||
2818 | * for a particular region is not performed. This can be done separately with {@link #isValidnumber}. |
||
2819 | * |
||
2820 | * @param string $numberToParse number that we are attempting to parse. This can contain formatting |
||
2821 | * such as +, ( and -, as well as a phone number extension. |
||
2822 | * @param string $defaultRegion region that we are expecting the number to be from. This is only used |
||
2823 | * if the number being parsed is not written in international format. |
||
2824 | * The country_code for the number in this case would be stored as that |
||
2825 | * of the default region supplied. If the number is guaranteed to |
||
2826 | * start with a '+' followed by the country calling code, then |
||
2827 | * "ZZ" or null can be supplied. |
||
2828 | * @param PhoneNumber|null $phoneNumber |
||
2829 | * @param bool $keepRawInput |
||
2830 | * @return PhoneNumber a phone number proto buffer filled with the parsed number |
||
2831 | * @throws NumberParseException if the string is not considered to be a viable phone number (e.g. |
||
2832 | * too few or too many digits) or if no default region was supplied |
||
2833 | * and the number is not in international format (does not start |
||
2834 | * with +) |
||
2835 | */ |
||
2836 | public function parse($numberToParse, $defaultRegion, PhoneNumber $phoneNumber = null, $keepRawInput = false) |
||
2844 | |||
2845 | /** |
||
2846 | * Formats a phone number in the specified format using client-defined formatting rules. Note that |
||
2847 | * if the phone number has a country calling code of zero or an otherwise invalid country calling |
||
2848 | * code, we cannot work out things like whether there should be a national prefix applied, or how |
||
2849 | * to format extensions, so we return the national significant number with no formatting applied. |
||
2850 | * |
||
2851 | * @param PhoneNumber $number the phone number to be formatted |
||
2852 | * @param int $numberFormat the format the phone number should be formatted into |
||
2853 | * @param array $userDefinedFormats formatting rules specified by clients |
||
2854 | * @return String the formatted phone number |
||
2855 | */ |
||
2856 | public function formatByPattern(PhoneNumber $number, $numberFormat, array $userDefinedFormats) |
||
2903 | |||
2904 | /** |
||
2905 | * Gets a valid number for the specified region. |
||
2906 | * |
||
2907 | * @param string regionCode the region for which an example number is needed |
||
2908 | * @return PhoneNumber a valid fixed-line number for the specified region. Returns null when the metadata |
||
2909 | * does not contain such information, or the region 001 is passed in. For 001 (representing |
||
2910 | * non-geographical numbers), call {@link #getExampleNumberForNonGeoEntity} instead. |
||
2911 | */ |
||
2912 | public function getExampleNumber($regionCode) |
||
2916 | |||
2917 | /** |
||
2918 | * Gets an invalid number for the specified region. This is useful for unit-testing purposes, |
||
2919 | * where you want to test what will happen with an invalid number. Note that the number that is |
||
2920 | * returned will always be able to be parsed and will have the correct country code. It may also |
||
2921 | * be a valid *short* number/code for this region. Validity checking such numbers is handled with |
||
2922 | * {@link ShortNumberInfo}. |
||
2923 | * |
||
2924 | * @param string $regionCode The region for which an example number is needed |
||
2925 | * @return PhoneNumber|null An invalid number for the specified region. Returns null when an unsupported region |
||
2926 | * or the region 001 (Earth) is passed in. |
||
2927 | */ |
||
2928 | public function getInvalidExampleNumber($regionCode) |
||
2974 | |||
2975 | /** |
||
2976 | * Gets a valid number for the specified region and number type. |
||
2977 | * |
||
2978 | * @param string|int $regionCodeOrType the region for which an example number is needed |
||
2979 | * @param int $type the PhoneNumberType of number that is needed |
||
2980 | * @return PhoneNumber a valid number for the specified region and type. Returns null when the metadata |
||
2981 | * does not contain such information or if an invalid region or region 001 was entered. |
||
2982 | * For 001 (representing non-geographical numbers), call |
||
2983 | * {@link #getExampleNumberForNonGeoEntity} instead. |
||
2984 | * |
||
2985 | * If $regionCodeOrType is the only parameter supplied, then a valid number for the specified number type |
||
2986 | * will be returned that may belong to any country. |
||
2987 | */ |
||
2988 | public function getExampleNumberForType($regionCodeOrType, $type = null) |
||
3030 | |||
3031 | /** |
||
3032 | * @param PhoneMetadata $metadata |
||
3033 | * @param int $type PhoneNumberType |
||
3034 | * @return PhoneNumberDesc |
||
3035 | */ |
||
3036 | protected function getNumberDescByType(PhoneMetadata $metadata, $type) |
||
3064 | |||
3065 | /** |
||
3066 | * Gets a valid number for the specified country calling code for a non-geographical entity. |
||
3067 | * |
||
3068 | * @param int $countryCallingCode the country calling code for a non-geographical entity |
||
3069 | * @return PhoneNumber a valid number for the non-geographical entity. Returns null when the metadata |
||
3070 | * does not contain such information, or the country calling code passed in does not belong |
||
3071 | * to a non-geographical entity. |
||
3072 | */ |
||
3073 | public function getExampleNumberForNonGeoEntity($countryCallingCode) |
||
3103 | |||
3104 | |||
3105 | /** |
||
3106 | * Takes two phone numbers and compares them for equality. |
||
3107 | * |
||
3108 | * <p>Returns EXACT_MATCH if the country_code, NSN, presence of a leading zero |
||
3109 | * for Italian numbers and any extension present are the same. Returns NSN_MATCH |
||
3110 | * if either or both has no region specified, and the NSNs and extensions are |
||
3111 | * the same. Returns SHORT_NSN_MATCH if either or both has no region specified, |
||
3112 | * or the region specified is the same, and one NSN could be a shorter version |
||
3113 | * of the other number. This includes the case where one has an extension |
||
3114 | * specified, and the other does not. Returns NO_MATCH otherwise. For example, |
||
3115 | * the numbers +1 345 657 1234 and 657 1234 are a SHORT_NSN_MATCH. The numbers |
||
3116 | * +1 345 657 1234 and 345 657 are a NO_MATCH. |
||
3117 | * |
||
3118 | * @param $firstNumberIn PhoneNumber|string First number to compare. If it is a |
||
3119 | * string it can contain formatting, and can have country calling code specified |
||
3120 | * with + at the start. |
||
3121 | * @param $secondNumberIn PhoneNumber|string Second number to compare. If it is a |
||
3122 | * string it can contain formatting, and can have country calling code specified |
||
3123 | * with + at the start. |
||
3124 | * @throws \InvalidArgumentException |
||
3125 | * @return int {MatchType} NOT_A_NUMBER, NO_MATCH, |
||
3126 | */ |
||
3127 | public function isNumberMatch($firstNumberIn, $secondNumberIn) |
||
3232 | |||
3233 | /** |
||
3234 | * Returns true when one national number is the suffix of the other or both are the same. |
||
3235 | * @param PhoneNumber $firstNumber |
||
3236 | * @param PhoneNumber $secondNumber |
||
3237 | * @return bool |
||
3238 | */ |
||
3239 | protected function isNationalNumberSuffixOfTheOther(PhoneNumber $firstNumber, PhoneNumber $secondNumber) |
||
3246 | |||
3247 | protected function stringEndsWithString($hayStack, $needle) |
||
3253 | |||
3254 | /** |
||
3255 | * Returns true if the supplied region supports mobile number portability. Returns false for |
||
3256 | * invalid, unknown or regions that don't support mobile number portability. |
||
3257 | * |
||
3258 | * @param string $regionCode the region for which we want to know whether it supports mobile number |
||
3259 | * portability or not. |
||
3260 | * @return bool |
||
3261 | */ |
||
3262 | public function isMobileNumberPortableRegion($regionCode) |
||
3271 | |||
3272 | /** |
||
3273 | * Check whether a phone number is a possible number given a number in the form of a string, and |
||
3274 | * the region where the number could be dialed from. It provides a more lenient check than |
||
3275 | * {@link #isValidNumber}. See {@link #isPossibleNumber(PhoneNumber)} for details. |
||
3276 | * |
||
3277 | * <p>This method first parses the number, then invokes {@link #isPossibleNumber(PhoneNumber)} |
||
3278 | * with the resultant PhoneNumber object. |
||
3279 | * |
||
3280 | * @param PhoneNumber|string $number the number that needs to be checked, in the form of a string |
||
3281 | * @param string $regionDialingFrom the region that we are expecting the number to be dialed from. |
||
3282 | * Note this is different from the region where the number belongs. For example, the number |
||
3283 | * +1 650 253 0000 is a number that belongs to US. When written in this form, it can be |
||
3284 | * dialed from any region. When it is written as 00 1 650 253 0000, it can be dialed from any |
||
3285 | * region which uses an international dialling prefix of 00. When it is written as |
||
3286 | * 650 253 0000, it can only be dialed from within the US, and when written as 253 0000, it |
||
3287 | * can only be dialed from within a smaller area in the US (Mountain View, CA, to be more |
||
3288 | * specific). |
||
3289 | * @return boolean true if the number is possible |
||
3290 | */ |
||
3291 | public function isPossibleNumber($number, $regionDialingFrom = null) |
||
3305 | |||
3306 | |||
3307 | /** |
||
3308 | * Check whether a phone number is a possible number. It provides a more lenient check than |
||
3309 | * {@link #isValidNumber} in the following sense: |
||
3310 | * <ol> |
||
3311 | * <li> It only checks the length of phone numbers. In particular, it doesn't check starting |
||
3312 | * digits of the number. |
||
3313 | * <li> It doesn't attempt to figure out the type of the number, but uses general rules which |
||
3314 | * applies to all types of phone numbers in a region. Therefore, it is much faster than |
||
3315 | * isValidNumber. |
||
3316 | * <li> For fixed line numbers, many regions have the concept of area code, which together with |
||
3317 | * subscriber number constitute the national significant number. It is sometimes okay to dial |
||
3318 | * the subscriber number only when dialing in the same area. This function will return |
||
3319 | * true if the subscriber-number-only version is passed in. On the other hand, because |
||
3320 | * isValidNumber validates using information on both starting digits (for fixed line |
||
3321 | * numbers, that would most likely be area codes) and length (obviously includes the |
||
3322 | * length of area codes for fixed line numbers), it will return false for the |
||
3323 | * subscriber-number-only version. |
||
3324 | * </ol> |
||
3325 | * @param PhoneNumber $number the number that needs to be checked |
||
3326 | * @return int a ValidationResult object which indicates whether the number is possible |
||
3327 | */ |
||
3328 | public function isPossibleNumberWithReason(PhoneNumber $number) |
||
3346 | |||
3347 | /** |
||
3348 | * Attempts to extract a valid number from a phone number that is too long to be valid, and resets |
||
3349 | * the PhoneNumber object passed in to that valid version. If no valid number could be extracted, |
||
3350 | * the PhoneNumber object passed in will not be modified. |
||
3351 | * @param PhoneNumber $number a PhoneNumber object which contains a number that is too long to be valid. |
||
3352 | * @return boolean true if a valid phone number can be successfully extracted. |
||
3353 | */ |
||
3354 | public function truncateTooLongNumber(PhoneNumber $number) |
||
3372 | } |
||
3373 |
If an expression can have both
false
, andnull
as possible values. It is generally a good practice to always use strict comparison to clearly distinguish between those two values.