Address.php
1 year ago
Color.php
1 year ago
Company.php
1 year ago
DateTime.php
1 year ago
Internet.php
1 year ago
Payment.php
1 year ago
Person.php
1 year ago
PhoneNumber.php
1 year ago
Text.php
1 year 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 |