Stores the most valuable pieces of PHP code you can reuse in different projects many times
Generates a random string of variable length
function getUniqueCode($length = "") { $code = md5(uniqid(rand(), true)); if ($length != "") return substr($code, 0, $length); else return $code; }