当前位置:Gxlcms > PHP教程 > php?生成随机数

php?生成随机数

时间:2021-07-01 10:21:17 帮助过:3人阅读

如何生成1~9,a~z,A~Z之间XXX位随机数


回复讨论(解决方案)

/**
* 生成随机数
* @param int $length ?度
* @return string
*/
function randomkey($length) {
$hash = '';
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
$max = strlen($chars) - 1;
for ($i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}

人气教程排行