名站导航为爱好php程序的朋友们提供php相关的教程知识。
php生成随机字符串的函数
具体代码如下如下: <?php /** * 产生随机字符串 *www.mzdh.net * 产生一个指定长度的随机字符串,并返回给用户 * * @access public * @param int $len 产生字符串的位数 * @return string */ function randStr($len=6) { $chars='ABDEFGhJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*'; // characters to build the password from mt_srand((double)microtime()*1000000*getmypid()); // seed the random number generater (must be done) $password=''; while(strlen($password)<$len) $password.=substr($chars,(mt_rand()%strlen($chars)),1); return $password; } ?> 名站网址导航好了关于php程序的知识就说到这里希望可以帮助需要的朋友。,PhP程序生成随机字符串的二个例子