ar_JO
1 year ago
ar_SA
1 year ago
at_AT
1 year ago
bg_BG
1 year ago
bn_BD
1 year ago
cs_CZ
1 year ago
da_DK
1 year ago
de_AT
1 year ago
de_CH
1 year ago
de_DE
1 year ago
el_CY
1 year ago
el_GR
1 year ago
en_AU
1 year ago
en_CA
1 year ago
en_GB
1 year ago
en_HK
1 year ago
en_IN
1 year ago
en_NG
1 year ago
en_NZ
1 year ago
en_PH
1 year ago
en_SG
1 year ago
en_UG
1 year ago
en_US
1 year ago
en_ZA
1 year ago
es_AR
1 year ago
es_ES
1 year ago
es_PE
1 year ago
es_VE
1 year ago
et_EE
1 year ago
fa_IR
1 year ago
fi_FI
1 year ago
fr_BE
1 year ago
fr_CA
1 year ago
fr_CH
1 year ago
fr_FR
1 year ago
he_IL
1 year ago
hr_HR
1 year ago
hu_HU
1 year ago
hy_AM
1 year ago
id_ID
1 year ago
is_IS
1 year ago
it_CH
1 year ago
it_IT
1 year ago
ja_JP
1 year ago
ka_GE
1 year ago
kk_KZ
1 year ago
ko_KR
1 year ago
lt_LT
1 year ago
lv_LV
1 year ago
me_ME
1 year ago
mn_MN
1 year ago
ms_MY
1 year ago
nb_NO
1 year ago
ne_NP
1 year ago
nl_BE
1 year ago
nl_NL
1 year ago
pl_PL
1 year ago
pt_BR
1 year ago
pt_PT
1 year ago
ro_MD
1 year ago
ro_RO
1 year ago
ru_RU
1 year ago
sk_SK
1 year ago
sl_SI
1 year ago
sr_Cyrl_RS
1 year ago
sr_Latn_RS
1 year ago
sr_RS
1 year ago
sv_SE
1 year ago
th_TH
1 year ago
tr_TR
1 year ago
uk_UA
1 year ago
vi_VN
1 year ago
zh_CN
1 year ago
zh_TW
1 year ago
Address.php
1 year ago
Barcode.php
1 year ago
Base.php
1 year ago
Biased.php
1 year ago
Color.php
1 year ago
Company.php
1 year ago
DateTime.php
1 year ago
File.php
1 year ago
HtmlLorem.php
1 year ago
Image.php
1 year ago
Internet.php
1 year ago
Lorem.php
1 year ago
Miscellaneous.php
1 year ago
Payment.php
1 year ago
Person.php
1 year ago
PhoneNumber.php
1 year ago
Text.php
1 year ago
UserAgent.php
1 year ago
Uuid.php
1 year ago
Biased.php
65 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider; |
| 4 | |
| 5 | class Biased extends Base |
| 6 | { |
| 7 | /** |
| 8 | * Returns a biased integer between $min and $max (both inclusive). |
| 9 | * The distribution depends on $function. |
| 10 | * |
| 11 | * The algorithm creates two doubles, x ∈ [0, 1], y ∈ [0, 1) and checks whether the |
| 12 | * return value of $function for x is greater than or equal to y. If this is |
| 13 | * the case the number is accepted and x is mapped to the appropriate integer |
| 14 | * between $min and $max. Otherwise two new doubles are created until the pair |
| 15 | * is accepted. |
| 16 | * |
| 17 | * @param integer $min Minimum value of the generated integers. |
| 18 | * @param integer $max Maximum value of the generated integers. |
| 19 | * @param callable $function A function mapping x ∈ [0, 1] onto a double ∈ [0, 1] |
| 20 | * @return integer An integer between $min and $max. |
| 21 | */ |
| 22 | public function biasedNumberBetween($min = 0, $max = 100, $function = 'sqrt') |
| 23 | { |
| 24 | do { |
| 25 | $x = mt_rand() / mt_getrandmax(); |
| 26 | $y = mt_rand() / (mt_getrandmax() + 1); |
| 27 | } while (call_user_func($function, $x) < $y); |
| 28 | |
| 29 | return (int) floor($x * ($max - $min + 1) + $min); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * 'unbiased' creates an unbiased distribution by giving |
| 34 | * each value the same value of one. |
| 35 | * |
| 36 | * @return integer |
| 37 | */ |
| 38 | protected static function unbiased() |
| 39 | { |
| 40 | return 1; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * 'linearLow' favors lower numbers. The probability decreases |
| 45 | * in a linear fashion. |
| 46 | * |
| 47 | * @return integer |
| 48 | */ |
| 49 | protected static function linearLow($x) |
| 50 | { |
| 51 | return 1 - $x; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * 'linearHigh' favors higher numbers. The probability increases |
| 56 | * in a linear fashion. |
| 57 | * |
| 58 | * @return integer |
| 59 | */ |
| 60 | protected static function linearHigh($x) |
| 61 | { |
| 62 | return $x; |
| 63 | } |
| 64 | } |
| 65 |