PluginProbe
PayPlug for WooCommerce (Official) / 1.0.22
PayPlug for WooCommerce (Official) v1.0.22
3.0.0 2.18.0 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 1.10.0 1.10.1 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 All 101 releases
payplug / lib / libphonenumber / PhoneNumberFormat.php

PhoneNumberFormat.php in PayPlug for WooCommerce (Official) 1.0.22, at lib/libphonenumber/PhoneNumberFormat.php

24 lines 919 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace libphonenumber;
4
5 /**
6 * INTERNATIONAL and NATIONAL formats are consistent with the definition in ITU-T Recommendation
7 * E123. For example, the number of the Google Switzerland office will be written as
8 * "+41 44 668 1800" in INTERNATIONAL format, and as "044 668 1800" in NATIONAL format.
9 * E164 format is as per INTERNATIONAL format but with no formatting applied, e.g.
10 * "+41446681800". RFC3966 is as per INTERNATIONAL format, but with all spaces and other
11 * separating symbols replaced with a hyphen, and with any phone number extension appended with
12 * ";ext=". It also will have a prefix of "tel:" added, e.g. "tel:+41-44-668-1800".
13 *
14 * Note: If you are considering storing the number in a neutral format, you are highly advised to
15 * use the PhoneNumber class.
16 */
17 class PhoneNumberFormat
18 {
19 const E164 = 0;
20 const INTERNATIONAL = 1;
21 const NATIONAL = 2;
22 const RFC3966 = 3;
23 }
24