How to Get a Random Value From a PHP Array?

Hello friends, today I will tell you through experts php tutorial how you can easily get the value of random from any php array.

So friends php has an array_rand () function with the help of which you can easily get random values ​​from the array. How this function is used in php. You are explained below.

How to get random value out of an array in PHP, Get random item from array, Extract random values from an array with PHP

array_rand() function is used to get random value from PHP array.

Usage

<?php
$random=array("apple","grapes","banana","mango","orange");
echo $random_value=array_rand($random);
?>

You are given above as an example. You can easily test this by copying this code and writing the code in your php file and running it on your local server.