Sometimes it can be useful to get random array value in PHP.
You can use my function below to do it:
function getRandomArrayValue($a) { $k = array_rand($a); $v = $a[$k]; return $v; }
If you have any ideas how to make it better: all your comments are welcomed.