欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP 随机字符

程序员文章站 2022-03-13 22:51:44
...
随机字符生成
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;
}