Get random item from array
echo $items[array_rand($items)];
array_rand()
If you don't mind picking the same item again at some other time:
$items[rand(0, count($items) - 1)];
echo $items[array_rand($items)];
array_rand()
If you don't mind picking the same item again at some other time:
$items[rand(0, count($items) - 1)];