网络编程 
首页 > 网络编程 > 浏览文章

PHP产生随机字符串函数

(编辑:jimmy 日期: 2024/10/11 浏览:3 次 )
<?php 

/**  
* 产生随机字符串  
*  
* 产生一个指定长度的随机字符串,并返回给用户  
*  
* @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往windows中添加用户