Heim >php教程 >php手册 >php中生成随机密码几种方法

php中生成随机密码几种方法

WBOY
WBOYOriginal
2016-05-25 16:50:041372Durchsuche

mt_rand ( int $min , int $max )函数用于生成随机整数,其中$min–$max为ascii码的范围,这里取33-126,可以根据需要调整范围,如ascii码表中97–122位对应a–z的英文字母,具体可参考ascii码表;chr ( int $ascii )函数用于将对应整数$ascii转换成对应的字符,代码如下:

<?php
function create_password($pw_length = 8) 
{ 
	$randpwd = &#39;&#39;; 
	for ($i = 0; $i < $pw_length; $i++)  
	{ 
		$randpwd .= chr(mt_rand(33, 126)); 
	} 
	return $randpwd; 
} 
// 调用该函数,传递长度参数$pw_length = 6 
echo create_password(6);
?>

方法二:

1、预置一个的字符串$chars,包括a-z、a-z、0-9以及一些特殊字符;

2、在$chars字符串中随机取一个字符;

3、重复第二步n次,可得长度为n的密码,代码如下:

<?php
function generate_password( $length = 8 ) { 
	// 密码字符集,可任意添加你需要的字符 
	$chars = &#39;abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()-_ []{}<>~`+=,.;:/?|&#39;; 
	$password = &#39;&#39;; 
	for ( $i = 0; $i < $length; $i++ )  
	{ 
		// 这里提供两种字符获取方式 
		// 第一种是使用 substr 截取$chars中的任意一位字符; 
		// 第二种是取字符数组 $chars 的任意元素 
		// $password .= substr($chars, mt_rand(0, strlen($chars) - 1), 1); 
		$password .= $chars[ mt_rand(0, strlen($chars) - 1) ]; 
	} 
	return $password; 
}
?>

方法三:

1、预置一个的字符数组$chars,包括a-z、a-z、0-9以及一些特殊字符;

2、通过array_rand()从数组$chars中随机选出$length个元素;

3、根据已获取的键名数组$keys,从数组$chars取出字符拼接字符串。

该方法的缺点是相同的字符不会重复取,代码如下:

<?php
function make_password( $length = 8 ) 
{ 
	// 密码字符集,可任意添加你需要的字符 
	$chars = array(&#39;a&#39;, &#39;b&#39;, &#39;c&#39;, &#39;d&#39;, &#39;e&#39;, &#39;f&#39;, &#39;g&#39;, &#39;h&#39;,  
	&#39;i&#39;, &#39;j&#39;, &#39;k&#39;, &#39;l&#39;,&#39;m&#39;, &#39;n&#39;, &#39;o&#39;, &#39;p&#39;, &#39;q&#39;, &#39;r&#39;, &#39;s&#39;,  
	&#39;t&#39;, &#39;u&#39;, &#39;v&#39;, &#39;w&#39;, &#39;x&#39;, &#39;y&#39;,&#39;z&#39;, &#39;a&#39;, &#39;b&#39;, &#39;c&#39;, &#39;d&#39;,  
	&#39;e&#39;, &#39;f&#39;, &#39;g&#39;, &#39;h&#39;, &#39;i&#39;, &#39;j&#39;, &#39;k&#39;, &#39;l&#39;,&#39;m&#39;, &#39;n&#39;, &#39;o&#39;,  
	&#39;p&#39;, &#39;q&#39;, &#39;r&#39;, &#39;s&#39;, &#39;t&#39;, &#39;u&#39;, &#39;v&#39;, &#39;w&#39;, &#39;x&#39;, &#39;y&#39;,&#39;z&#39;,  
	&#39;0&#39;, &#39;1&#39;, &#39;2&#39;, &#39;3&#39;, &#39;4&#39;, &#39;5&#39;, &#39;6&#39;, &#39;7&#39;, &#39;8&#39;, &#39;9&#39;, &#39;!&#39;,  
	&#39;@&#39;,&#39;#&#39;, &#39;$&#39;, &#39;%&#39;, &#39;^&#39;, &#39;&&#39;, &#39;*&#39;, &#39;(&#39;, &#39;)&#39;, &#39;-&#39;, &#39;_&#39;,  
	&#39;[&#39;, &#39;]&#39;, &#39;{&#39;, &#39;}&#39;, &#39;<&#39;, &#39;>&#39;, &#39;~&#39;, &#39;`&#39;, &#39;+&#39;, &#39;=&#39;, &#39;,&#39;,  
	&#39;.&#39;, &#39;;&#39;, &#39;:&#39;, &#39;/&#39;, &#39;?&#39;, &#39;|&#39;); 
	// 在 $chars 中随机取 $length 个数组元素键名 
	$keys = ($chars, $length);  
	$password = &#39;&#39;; 
	for($i = 0; $i < $length; $i++) 
	{ 
		// 将 $length 个数组元素连接成字符串 
		$password .= $chars[$keys[$i]]; 
	} 
	return $password; 
}
?>

时间效率对比:我们使用以下php代码,计算上面的3个随机密码生成函数生成6位密码的运行时间,进而对他们的时间效率进行一个简单的对比,代码如下:

<?php
function getmicrotime() 
{ 
	list($usec, $sec) = explode(" ",microtime()); 
	return ((float)$usec + (float)$sec); 
} 
// 记录开始时间 
$time_start = getmicrotime(); 
// 这里放要执行的php代码,如: 
// echo create_password(6); 
// 记录结束时间 
$time_end = getmicrotime(); 
$time = $time_end - $time_start; 
// 输出运行总时间  
echo "执行时间 $time seconds";  
?>

               
               

文章链接:

随便收藏,请保留本文地址!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn