PHP 随机字符
程序员文章站
2022-04-05 15:53:36
...
随机字符生成
function randStr($length=4,$type="1"){
$array = array(
'1' => '0123456789',
'2' => 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
'3' => '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ',
);
$string = $array[$type];
$count = strlen($string)-1;
$rand = '';
for ($i = 0; $i
$rand .= $string[mt_rand(0, $count)];
}
return $rand;
}