ar_JO
5 years ago
ar_SA
5 years ago
at_AT
5 years ago
bg_BG
5 years ago
bn_BD
5 years ago
cs_CZ
5 years ago
da_DK
5 years ago
de_AT
5 years ago
de_CH
5 years ago
de_DE
5 years ago
el_CY
5 years ago
el_GR
5 years ago
en_AU
5 years ago
en_CA
5 years ago
en_GB
5 years ago
en_HK
5 years ago
en_IN
5 years ago
en_NG
5 years ago
en_NZ
5 years ago
en_PH
5 years ago
en_SG
5 years ago
en_UG
5 years ago
en_US
5 years ago
en_ZA
5 years ago
es_AR
5 years ago
es_ES
5 years ago
es_PE
5 years ago
es_VE
5 years ago
et_EE
5 years ago
fa_IR
5 years ago
fi_FI
5 years ago
fr_BE
5 years ago
fr_CA
5 years ago
fr_CH
5 years ago
fr_FR
5 years ago
he_IL
5 years ago
hr_HR
5 years ago
hu_HU
5 years ago
hy_AM
5 years ago
id_ID
5 years ago
is_IS
5 years ago
it_CH
5 years ago
it_IT
5 years ago
ja_JP
5 years ago
ka_GE
5 years ago
kk_KZ
5 years ago
ko_KR
5 years ago
lt_LT
5 years ago
lv_LV
5 years ago
me_ME
5 years ago
mn_MN
5 years ago
ms_MY
5 years ago
nb_NO
5 years ago
ne_NP
5 years ago
nl_BE
5 years ago
nl_NL
5 years ago
pl_PL
5 years ago
pt_BR
5 years ago
pt_PT
5 years ago
ro_MD
5 years ago
ro_RO
5 years ago
ru_RU
5 years ago
sk_SK
5 years ago
sl_SI
5 years ago
sr_Cyrl_RS
5 years ago
sr_Latn_RS
5 years ago
sr_RS
5 years ago
sv_SE
5 years ago
th_TH
5 years ago
tr_TR
5 years ago
uk_UA
5 years ago
vi_VN
5 years ago
zh_CN
5 years ago
zh_TW
5 years ago
Address.php
5 years ago
Barcode.php
5 years ago
Base.php
5 years ago
Biased.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
DateTime.php
5 years ago
File.php
5 years ago
HtmlLorem.php
5 years ago
Image.php
5 years ago
Internet.php
5 years ago
Lorem.php
5 years ago
Miscellaneous.php
5 years ago
Payment.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
UserAgent.php
5 years ago
Uuid.php
5 years ago
Person.php
127 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider; |
| 4 | |
| 5 | class Person extends Base |
| 6 | { |
| 7 | const GENDER_MALE = 'male'; |
| 8 | const GENDER_FEMALE = 'female'; |
| 9 | |
| 10 | protected static $titleFormat = array( |
| 11 | '{{titleMale}}', |
| 12 | '{{titleFemale}}', |
| 13 | ); |
| 14 | |
| 15 | protected static $firstNameFormat = array( |
| 16 | '{{firstNameMale}}', |
| 17 | '{{firstNameFemale}}', |
| 18 | ); |
| 19 | |
| 20 | protected static $maleNameFormats = array( |
| 21 | '{{firstNameMale}} {{lastName}}', |
| 22 | ); |
| 23 | |
| 24 | protected static $femaleNameFormats = array( |
| 25 | '{{firstNameFemale}} {{lastName}}', |
| 26 | ); |
| 27 | |
| 28 | protected static $firstNameMale = array( |
| 29 | 'John', |
| 30 | ); |
| 31 | |
| 32 | protected static $firstNameFemale = array( |
| 33 | 'Jane', |
| 34 | ); |
| 35 | |
| 36 | protected static $lastName = array('Doe'); |
| 37 | |
| 38 | protected static $titleMale = array('Mr.', 'Dr.', 'Prof.'); |
| 39 | |
| 40 | protected static $titleFemale = array('Mrs.', 'Ms.', 'Miss', 'Dr.', 'Prof.'); |
| 41 | |
| 42 | /** |
| 43 | * @param string|null $gender 'male', 'female' or null for any |
| 44 | * @return string |
| 45 | * @example 'John Doe' |
| 46 | */ |
| 47 | public function name($gender = null) |
| 48 | { |
| 49 | if ($gender === static::GENDER_MALE) { |
| 50 | $format = static::randomElement(static::$maleNameFormats); |
| 51 | } elseif ($gender === static::GENDER_FEMALE) { |
| 52 | $format = static::randomElement(static::$femaleNameFormats); |
| 53 | } else { |
| 54 | $format = static::randomElement(array_merge(static::$maleNameFormats, static::$femaleNameFormats)); |
| 55 | } |
| 56 | |
| 57 | return $this->generator->parse($format); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * @param string|null $gender 'male', 'female' or null for any |
| 62 | * @return string |
| 63 | * @example 'John' |
| 64 | */ |
| 65 | public function firstName($gender = null) |
| 66 | { |
| 67 | if ($gender === static::GENDER_MALE) { |
| 68 | return static::firstNameMale(); |
| 69 | } elseif ($gender === static::GENDER_FEMALE) { |
| 70 | return static::firstNameFemale(); |
| 71 | } |
| 72 | |
| 73 | return $this->generator->parse(static::randomElement(static::$firstNameFormat)); |
| 74 | } |
| 75 | |
| 76 | public static function firstNameMale() |
| 77 | { |
| 78 | return static::randomElement(static::$firstNameMale); |
| 79 | } |
| 80 | |
| 81 | public static function firstNameFemale() |
| 82 | { |
| 83 | return static::randomElement(static::$firstNameFemale); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * @example 'Doe' |
| 88 | * @return string |
| 89 | */ |
| 90 | public function lastName() |
| 91 | { |
| 92 | return static::randomElement(static::$lastName); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @example 'Mrs.' |
| 97 | * @param string|null $gender 'male', 'female' or null for any |
| 98 | * @return string |
| 99 | */ |
| 100 | public function title($gender = null) |
| 101 | { |
| 102 | if ($gender === static::GENDER_MALE) { |
| 103 | return static::titleMale(); |
| 104 | } elseif ($gender === static::GENDER_FEMALE) { |
| 105 | return static::titleFemale(); |
| 106 | } |
| 107 | |
| 108 | return $this->generator->parse(static::randomElement(static::$titleFormat)); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * @example 'Mr.' |
| 113 | */ |
| 114 | public static function titleMale() |
| 115 | { |
| 116 | return static::randomElement(static::$titleMale); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * @example 'Mrs.' |
| 121 | */ |
| 122 | public static function titleFemale() |
| 123 | { |
| 124 | return static::randomElement(static::$titleFemale); |
| 125 | } |
| 126 | } |
| 127 |