/**
* 產生隨機字串
*
* 產生一個指定長度的隨機字串,並回傳給使用者
*
* @accah字串的位數
* @return string
*/
函數randStr($len=6) {
$chars='ABDEFGHJKLMNPQRSTVWXYabdefghijkmqrstvwxywxy mt_srand((double)microtime()*1000000*getmypid()); // 為隨機數產生器播種(必須完成)
$password='';
while(strlen($password)$password.=substr($chars,(mt_rand()%strlen($chars)),1);
回傳$密碼;
}
? >
http://www.bkjia.com/PHPjc/317275.html