note 52525 deleted from function.rand by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: Luis 

----

In fact, goochivasquez's methos also returns a concrete length key (40 chars in this case). Why not...

// RANDOM KEY PARAMETERS
$keychars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$length = rand(8,40);

// RANDOM KEY GENERATOR
$randkey = "";
for ($i=0;$i<$length;$i++)
{
  $randkey .= substr($keychars, rand(1, strlen($keychars) ), 1);
}
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.