You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
291 B
12 lines
291 B
3 years ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* 获取随机长度、随机内容的字符串
|
||
|
*/
|
||
|
function FunGetRandStr()
|
||
|
{
|
||
|
$randStr = 'ABCDEwitersenFGHIJKLMNOPQRSTwitersenUVWXYZwitersenabcdefghijklmnopqwitersenrstuvwxyz1234552167890';
|
||
|
return substr(str_shuffle($randStr), 0, rand(2, 5));
|
||
|
}
|