You can also do just:
$k = array_rand($array);
$v = $array[$k];
This is the way to do it when you have an associative array.
You can also do just:
$k = array_rand($array);
$v = $array[$k];
This is the way to do it when you have an associative array.