phpbar.de logo

Mailinglisten-Archive

[php] Zufall?

[php] Zufall?

Cyrill Schumacher webmasterbhs_(at)_bluewin.de
Wed, 31 May 2000 18:16:52 +0200


oder so kann man das auch machen:

function parswort($pw_length=6)
{
 srand((double)microtime()*1000000);
 $Zeichen = "abcdefghijklmnopqrstuvwxyzABC...0...9";
 $pawd = "";
 while (strlen($pawd) <= $pw_length) { $pawd .=
substr($Zeichen,(rand()%(strlen($Zeichen))),1); }
 return $pawd;
}
----------------------------

$matrix='qwertzuiopasdfghjklyxcvbnmQWERTZUIOPLKJHGFDSAYXCVBNM1234567890';
                 for ($i=0;$i<5;$i++)
                 {
                 $password=$password.substr($matrix,rand(0,61),1);
                 }

das blöde daran ist, dass immer wieder die gleichen Passwörter entstehen.
Weiss jemand rat?
--------------

kiri





php::bar PHP Wiki   -   Listenarchive