array_rand (PHP 4, PHP 5, PHP 7)array_rand — Pick one or more random entries out of an array Description ¶ mixed array_rand ( array $array [, int $num = 1 ] )Picks one or more random entries out of an array, and returns the key (or keys) of the random entries. It uses a pseudo random number generator that is not suitable for cryptographic purposes. Parameters ¶ arrayThe input array. numSpecifies..