Revision: 1076
Updated Code
at September 7, 2006 09:11 by javierarce
Updated Code
function getUniqueCode($length = "")
{
$code = md5(uniqid(rand(), true));
if ($length != "") return substr($code, 0, $length);
else return $code;
}
Revision: 1075
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 7, 2006 09:10 by javierarce
Initial Code
function getUniqueCode($length = "")
{
$code = md5(uniqid(rand(), true));
if ($length != "") return substr($code, 0, $length);
else return $code;
}
Initial URL
Initial Description
Generates a random string of variable length.
Initial Title
Generate Random String
Initial Tags
textmate
Initial Language
PHP