7 lines
90 B
PHP
7 lines
90 B
PHP
<?php
|
|
|
|
function array_rand_value($array)
|
|
{
|
|
return $array[rand(0, count($array)-1)];
|
|
}
|