What are you trying to do? Only use srand once per script. Also, no need to unset it here, it will just be written over. Here's an example use, a modification of your code ... try it and see what happens. Also, explain what you are wanting to do.
<?php
srand ((double) microtime() * 1000000);
for($loop = 1; $loop <= 100; $loop++)
{
echo '<br>a ' . $numbercheck = rand(1,605);
echo '<br>b ' . $numbercheck1 = rand(1,274);
}
?>