Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

assbach http://blog.assbach.de

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

[PHP] create a random string

// create a random string of 16 chars


$len = 16;
$base='ABCDEFGHKLMNOPQRSTWXYZabcdefghjkmnpqrstwxyz123456789';
$max=strlen($base)-1;
$activatecode='';
mt_srand((double)microtime()*1000000);
while (strlen($activatecode)<$len+1)
  $activatecode.=$base{mt_rand(0,$max)};
  
echo $activatecode;
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS