Address.php
5 years ago
Company.php
5 years ago
Internet.php
5 years ago
Payment.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
PhoneNumber.php
142 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\fr_FR; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | // Phone numbers can't start by 00 in France |
| 8 | // 01 is the most common prefix |
| 9 | protected static $formats = array( |
| 10 | '+33 (0)1 ## ## ## ##', |
| 11 | '+33 (0)1 ## ## ## ##', |
| 12 | '+33 (0)2 ## ## ## ##', |
| 13 | '+33 (0)3 ## ## ## ##', |
| 14 | '+33 (0)4 ## ## ## ##', |
| 15 | '+33 (0)5 ## ## ## ##', |
| 16 | '+33 (0)6 ## ## ## ##', |
| 17 | '+33 (0)7 {{phoneNumber07WithSeparator}}', |
| 18 | '+33 (0)8 {{phoneNumber08WithSeparator}}', |
| 19 | '+33 (0)9 ## ## ## ##', |
| 20 | '+33 1 ## ## ## ##', |
| 21 | '+33 1 ## ## ## ##', |
| 22 | '+33 2 ## ## ## ##', |
| 23 | '+33 3 ## ## ## ##', |
| 24 | '+33 4 ## ## ## ##', |
| 25 | '+33 5 ## ## ## ##', |
| 26 | '+33 6 ## ## ## ##', |
| 27 | '+33 7 {{phoneNumber07WithSeparator}}', |
| 28 | '+33 8 {{phoneNumber08WithSeparator}}', |
| 29 | '+33 9 ## ## ## ##', |
| 30 | '01########', |
| 31 | '01########', |
| 32 | '02########', |
| 33 | '03########', |
| 34 | '04########', |
| 35 | '05########', |
| 36 | '06########', |
| 37 | '07{{phoneNumber07}}', |
| 38 | '08{{phoneNumber08}}', |
| 39 | '09########', |
| 40 | '01 ## ## ## ##', |
| 41 | '01 ## ## ## ##', |
| 42 | '02 ## ## ## ##', |
| 43 | '03 ## ## ## ##', |
| 44 | '04 ## ## ## ##', |
| 45 | '05 ## ## ## ##', |
| 46 | '06 ## ## ## ##', |
| 47 | '07 {{phoneNumber07WithSeparator}}', |
| 48 | '08 {{phoneNumber08WithSeparator}}', |
| 49 | '09 ## ## ## ##', |
| 50 | ); |
| 51 | |
| 52 | // Mobile phone numbers start by 06 and 07 |
| 53 | // 06 is the most common prefix |
| 54 | protected static $mobileFormats = array( |
| 55 | '+33 (0)6 ## ## ## ##', |
| 56 | '+33 6 ## ## ## ##', |
| 57 | '+33 (0)7 {{phoneNumber07WithSeparator}}', |
| 58 | '+33 7 {{phoneNumber07WithSeparator}}', |
| 59 | '06########', |
| 60 | '07{{phoneNumber07}}', |
| 61 | '06 ## ## ## ##', |
| 62 | '07 {{phoneNumber07WithSeparator}}', |
| 63 | ); |
| 64 | |
| 65 | protected static $serviceFormats = array( |
| 66 | '+33 (0)8 {{phoneNumber08WithSeparator}}', |
| 67 | '+33 8 {{phoneNumber08WithSeparator}}', |
| 68 | '08 {{phoneNumber08WithSeparator}}', |
| 69 | '08{{phoneNumber08}}', |
| 70 | ); |
| 71 | |
| 72 | public function phoneNumber07() |
| 73 | { |
| 74 | $phoneNumber = $this->phoneNumber07WithSeparator(); |
| 75 | $phoneNumber = str_replace(' ', '', $phoneNumber); |
| 76 | return $phoneNumber; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Only 073 to 079 are acceptable prefixes with 07 |
| 81 | * |
| 82 | * @see http://www.arcep.fr/index.php?id=8146 |
| 83 | */ |
| 84 | public function phoneNumber07WithSeparator() |
| 85 | { |
| 86 | $phoneNumber = $this->generator->numberBetween(3, 9); |
| 87 | $phoneNumber .= $this->numerify('# ## ## ##'); |
| 88 | return $phoneNumber; |
| 89 | } |
| 90 | |
| 91 | public function phoneNumber08() |
| 92 | { |
| 93 | $phoneNumber = $this->phoneNumber08WithSeparator(); |
| 94 | $phoneNumber = str_replace(' ', '', $phoneNumber); |
| 95 | return $phoneNumber; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Valid formats for 08: |
| 100 | * |
| 101 | * 0# ## ## ## |
| 102 | * 1# ## ## ## |
| 103 | * 2# ## ## ## |
| 104 | * 91 ## ## ## |
| 105 | * 92 ## ## ## |
| 106 | * 93 ## ## ## |
| 107 | * 97 ## ## ## |
| 108 | * 98 ## ## ## |
| 109 | * 99 ## ## ## |
| 110 | * |
| 111 | * Formats 089(4|6)## ## ## are valid, but will be |
| 112 | * attributed when other 089 resource ranges are exhausted. |
| 113 | * |
| 114 | * @see https://www.arcep.fr/index.php?id=8146#c9625 |
| 115 | * @see https://issuetracker.google.com/u/1/issues/73269839 |
| 116 | */ |
| 117 | public function phoneNumber08WithSeparator() |
| 118 | { |
| 119 | $regex = '([012]{1}\d{1}|(9[1-357-9])( \d{2}){3}'; |
| 120 | return $this->regexify($regex); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * @example '0601020304' |
| 125 | */ |
| 126 | public function mobileNumber() |
| 127 | { |
| 128 | $format = static::randomElement(static::$mobileFormats); |
| 129 | |
| 130 | return static::numerify($this->generator->parse($format)); |
| 131 | } |
| 132 | /** |
| 133 | * @example '0891951357' |
| 134 | */ |
| 135 | public function serviceNumber() |
| 136 | { |
| 137 | $format = static::randomElement(static::$serviceFormats); |
| 138 | |
| 139 | return static::numerify($this->generator->parse($format)); |
| 140 | } |
| 141 | } |
| 142 |