您的位置 首页 php

PHP生成随机数的方法总结

1,mt_rand()

 function GetRandStr($length){      $str='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';      $len=strlen($str)-1;      $randstr='';      for($i=0;$i<$length;$i++){              $num=mt_rand(0,$len);              $randstr .= $str[$num];		}		return $randstr;}  
 $number=GetRandStr(6);echo $number;  

2,

 function make_password( $length = 8 ){  		// 密码字符集,可任意添加你需要的字符    		$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', '!','@','#', '$', '%', '^', '&', '*', '(', ')', '-', '_','[', ']', '{', '}', '<', '>', '~', '`', '+', '=', ',','.', ';', ':', '/', '?', '|');      // 在 $chars 中随机取 $length 个数组元素键名      $keys = array_rand($chars, $length);    $password = '';    for($i = 0; $i < $length; $i++){        // 将 $length 个数组元素连接成字符串        $password .= $chars[$keys[$i]];    }    return $password;}  

3,取当时时间戳

 function get_password( $length = 8 ){  		$str = substr(md5(time()), 0, $length);		//md5加密,time()当前时间戳  		return $str;}  

4,打乱字符串

 function getrandstr(){      $str='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890';    $randStr = str_shuffle($str);//打乱字符串    $rands= substr($randStr,0,6);//substr(string,start,length);返回字符串的一部分    return $rands;  }  

文章来源:智云一二三科技

文章标题:PHP生成随机数的方法总结

文章地址:https://www.zhihuclub.com/32593.shtml

关于作者: 智云科技

热门文章

网站地图