This was the direction I was headed, but it of course does not work because shuffle doesn't return anything useful.
Code: Select all
$random = array_slice(shuffle(range(0, 25000)), 0, 103);Code: Select all
$pool = range(0,25000);
shuffle($pool);
$random = array_slice($pool, 0, 103);