$str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$code = "";
for ($i = 0; $i < $num; $i++) {
$code .= substr($str, rand(0, strlen($str) - 1), 1);
}
return $code;
这是我的,因为字符可重复使用
$code = "";
for ($i = 0; $i < $num; $i++) {
$code .= substr($str, rand(0, strlen($str) - 1), 1);
}
return $code;
这是我的,因为字符可重复使用
2017-07-08