-
-
/** - php は強力なパスワードを生成します
- リンク: bbs.it-home.org 2013/3/2
- */
- $password_length = 9;
function make_seed() {
- list($usec, $sec) =explode(' ', microtime());
- return (float) $sec + ((float) $usec * 100000);
- }
srand(make_seed()) ;
$alfa = “1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM”;
- $token = “”;
- for($i = 0; $i $token . = $alfa[rand(0, strlen($alfa))];
- }
- echo $token;
//方法2
- // パスワードを作成
- $totalChar = 8; // パスワードの文字数
- $salt = “abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ123456789”; // ソルトして文字を選択します
- srand((double)microtime()*1000000); // ランダムジェネレーターを開始します
- $Spass=””; // 初期変数を設定します
- for ($i=0;$i$Spass = $Spass 。 substr ($salt, rand() % strlen($salt), 1);
-
复制代
|