generation-jdr/include/lib.php

7 lines
90 B
PHP

<?php
function array_rand_value($array)
{
return $array[rand(0, count($array)-1)];
}