Skip to content

Instantly share code, notes, and snippets.

@lleitep3
lleitep3 / strRand.php
Created May 25, 2011 01:01
randomic string generator
<?php
function strRand($qtd)
{
$chars = implode(array_merge(range(0, 9),range('A', 'Z'),range('a', 'z')));
return substr(str_shuffle($chars), 0, $qtd);
}
$str = strRand(5);
echo "look: " . $str;