Return to Snippet

Revision: 34075
at October 16, 2010 19:16 by embrace


Initial Code
<?php

function random_arr($array) {

    $random = shuffle($array);

    echo $random;

}

?>

Initial URL


Initial Description
Nothing special.
First snippet. :)

Initial Title
Grab a random Value from an Array

Initial Tags
array

Initial Language
PHP