怎么用php自动生成一个26位字符串
发布网友
发布时间:2022-04-18 12:45
我来回答
共4个回答
热心网友
时间:2022-04-18 14:15
function GetRandStr($len)
{
$chars = array(
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
"l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",
"w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",
"H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",
"S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2",
"3", "4", "5", "6", "7", "8", "9"
);
$charsLen = count($chars) - 1;
shuffle($chars);
$output = "";
for ($i=0; $i<$len; $i++)
{
$output .= $chars[mt_rand(0, $charsLen)];
}
return $output;
}
调用:
$str =GetRandStr(26);
热心网友
时间:2022-04-18 15:33
你可以用md5加密一个字符串,然后用php函数取出26位就可以了;md5(time());然后用substr()这个函数来截取26位就可以了
热心网友
时间:2022-04-18 17:07
function get_hash($length = 13) {
$chars = '0123456789abcdefghijklmnopqrstuvwxyz';//设定随机字符串范围
$max = strlen($chars) - 1;
mt_srand((double)microtime() * 1000000);
for ($i=0; $i<$length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
如果要想要不同长度,调用函数时确定$length的长度就好
热心网友
时间:2022-04-18 18:59
你用这个26位的字符串干什么呢 ?
是随机的字符么?
有什么特殊的用途吗?