方法三:
1、預(yù)置一個(gè)的字符數(shù)組 $chars ,包括 a – z,A – Z,0 – 9,以及一些特殊字符
2、通過(guò)array_rand()從數(shù)組 $chars 中隨機(jī)選出 $length 個(gè)元素
3、根據(jù)已獲取的鍵名數(shù)組 $keys,從數(shù)組 $chars 取出字符拼接字符串。該方法的缺點(diǎn)是相同的字符不會(huì)重復(fù)取。
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 中隨機(jī)取 $length 個(gè)數(shù)組元素鍵名 $keys = ($chars, $length);
$password = ''; for($i = 0; $i < $length; $i++) { // 將 $length 個(gè)數(shù)組元素連接成字符串 $password .= $chars[$keys[$i]]; }
return $password; }
時(shí)間效率對(duì)比
我們使用以下PHP代碼,計(jì)算上面的 3 個(gè)隨機(jī)密碼生成函數(shù)生成 6 位密碼的運(yùn)行時(shí)間,進(jìn)而對(duì)他們的時(shí)間效率進(jìn)行一個(gè)簡(jiǎn)單的對(duì)比。
<?php function getmicrotime() { list($usec, $sec) = explode(" ",microtime()); return ((float)$usec + (float)$sec); } // 記錄開(kāi)始時(shí)間 $time_start = getmicrotime(); // 這里放要執(zhí)行的PHP代碼,如: // echo create_password(6); // 記錄結(jié)束時(shí)間 $time_end = getmicrotime(); $time = $time_end - $time_start;
// 輸出運(yùn)行總時(shí)間 echo "執(zhí)行時(shí)間 $time seconds"; ?>
最終得出的結(jié)果是:
方法一:9.8943710327148E-5 秒
方法二:9.6797943115234E-5 秒
方法三:0.00017499923706055 秒
可以看出方法一和方法二的執(zhí)行時(shí)間都差不多,而方法三的運(yùn)行時(shí)間稍微長(zhǎng)了點(diǎn)。
原文:http://www.ludou.org/how-to-create-a-password-generator-using-php.html
本文鏈接:http://www.95time.cn/tech/program/2010/7913.asp
出處:露兜博客
責(zé)任編輯:bluehearts
上一頁(yè) php生成隨機(jī)密碼的幾種方法 [1] 下一頁(yè)
◎進(jìn)入論壇網(wǎng)絡(luò)編程版塊參加討論
|