Address.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
DateTime.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
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\zh_TW; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '+8869########', |
| 9 | '+886-9##-###-###', |
| 10 | '09########', |
| 11 | '09##-###-###', |
| 12 | '(02)########', |
| 13 | '(02)####-####', |
| 14 | '(0#)#######', |
| 15 | '(0#)###-####', |
| 16 | '(0##)######', |
| 17 | '(0##)###-###', |
| 18 | ); |
| 19 | } |
| 20 |