All pastes #2059400 Raw Edit

Someone

public text v1 · immutable
#2059400 ·published 2011-05-14 16:48 UTC
rendered paste body
function genRandomString() 
{
    $length = 8;
    $characters = '0123456789abcdefghijklmnopqrstuvwxyz';
    $string = '';    

    for ($p = 0; $p < $length; $p++) 
	{
        $string .= $characters[mt_rand(0, strlen($characters))];
    }

    return $string;
}

// Example
$idhash = genRandomString();

while(alreadyExist($idhash)) // you must make this function yourself of course
{
    $idhash = genRandomString();
}