How to get random value out of an array in PHP?
There are two functions to get random value out of an array in PHP. The shuffle() and array_rand() function is used to get random value out of an array. Examples: Input : $arr = ("a"=>"21", "b"=>"31", "c"=>"7", "d"=>"20") // Get one random value Output :7 Input : $arr = ("a"=>"21", "b