you need to give rand() something to random
like
$number = rand(6,9); // this will random between 6 and 9
if you need a 8 digit number or "Filename"
why not just do this...
$filename = rand(10000000, 300000000);
though I dont think this is really what your looking for