PHP生成随机字符串的函数


PHP #随机 #函数2014-04-15 22:18

这玩意简单,贴代码时间,下面这个函数只有一个参数,设置随机字符串的长度。

function yige_randStr($len = 6) {
    $chars = 'ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*'; // characters to build the password from
    mt_srand((double) microtime() * 1000000 * getmypid()); // http://yige.org/ seed the random number generater (must be done)
    $password = '';
    while (strlen($password) < $len) $password. = substr($chars, (mt_rand() % strlen($chars)), 1);
    return $password;
}


相关文章

粤ICP备11097351号-1