Hide options

Randomly select of one element out of an array

Example how to randomly select of one element out of an array
$item = $item_array[array_rand($item_array)]; 



Top