PHP Random number using microtime

Random number using microtime

<?
$a = explode(" ",microtime());
echo substr(rand(1,$a[1]), 0, 8);
?>