$chars='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';//设置种子
for($i=0;$i<4;$i++){
//设置4个字符串长度
$code.=substr($chars,mt_rand(0,strlen($chars))-1,1);
//通过随机函数获得1个字符的位置,进行拼接。
}
echo $code;
来源http://zixuephp.net/article-27.html
$chars='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';//设置种子
for($i=0;$i<4;$i++){
//设置4个字符串长度
$code.=substr($chars,mt_rand(0,strlen($chars))-1,1);
//通过随机函数获得1个字符的位置,进行拼接。
}
echo $code;
来源http://zixuephp.net/article-27.html