Skip to content

Commit 4d85dfd

Browse files
authored
Merge pull request #17 from 9007967/patch-1
Str::random 随机字符串函数增强
2 parents d6f23f1 + 4c078f6 commit 4d85dfd

File tree

1 file changed

+36
-4
lines changed

1 file changed

+36
-4
lines changed

src/helper/Str.php

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,45 @@ public static function startsWith(string $haystack, $needles): bool
7676
* 获取指定长度的随机字母数字组合的字符串
7777
*
7878
* @param int $length
79+
* @param int $type
80+
* @param string $addChars
7981
* @return string
8082
*/
81-
public static function random(int $length = 16): string
83+
public static function random(int $length = 6, int $type = null, string $addChars = ''): string
8284
{
83-
$pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
84-
85-
return static::substr(str_shuffle(str_repeat($pool, $length)), 0, $length);
85+
$str = '';
86+
switch ($type) {
87+
case 0:
88+
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' . $addChars;
89+
break;
90+
case 1:
91+
$chars = str_repeat('0123456789', 3);
92+
break;
93+
case 2:
94+
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' . $addChars;
95+
break;
96+
case 3:
97+
$chars = 'abcdefghijklmnopqrstuvwxyz' . $addChars;
98+
break;
99+
case 4:
100+
$chars = "们以我到他会作时要动国产的一是工就年阶义发成部民可出能方进在了不和有大这主中人上为来分生对于学下级地个用同行面说种过命度革而多子后自社加小机也经力线本电高量长党得实家定深法表着水理化争现所二起政三好十战无农使性前等反体合斗路图把结第里正新开论之物从当两些还天资事队批点育重其思与间内去因件日利相由压员气业代全组数果期导平各基或月毛然如应形想制心样干都向变关问比展那它最及外没看治提五解系林者米群头意只明四道马认次文通但条较克又公孔领军流入接席位情运器并飞原油放立题质指建区验活众很教决特此常石强极土少已根共直团统式转别造切九你取西持总料连任志观调七么山程百报更见必真保热委手改管处己将修支识病象几先老光专什六型具示复安带每东增则完风回南广劳轮科北打积车计给节做务被整联步类集号列温装即毫知轴研单色坚据速防史拉世设达尔场织历花受求传口断况采精金界品判参层止边清至万确究书" . $addChars;
101+
break;
102+
default:
103+
$chars = 'ABCDEFGHIJKMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789' . $addChars;
104+
break;
105+
}
106+
if ($length > 10) {
107+
$chars = $type == 1 ? str_repeat($chars, $length) : str_repeat($chars, 5);
108+
}
109+
if ($type != 4) {
110+
$chars = str_shuffle($chars);
111+
$str = substr($chars, 0, $length);
112+
} else {
113+
for ($i = 0; $i < $length; $i++) {
114+
$str .= mb_substr($chars, floor(mt_rand(0, mb_strlen($chars, 'utf-8') - 1)), 1);
115+
}
116+
}
117+
return $str;
86118
}
87119

88120
/**

0 commit comments

Comments
 (0)