Quick Search:
 
 PHP Code: Pick Randomly from Array Jump to:  
Category: >> PHP Code >> Pick Randomly from Array  

<< lastnext >>

Snippet Name: Pick Randomly from Array

Description: Randomly pick out one of the array elements and turn it into a string variable.

Note that this method only works where the elements exist AND are sequentially numbered. If you unset() elements from the array, you may end up picking elements that no longer exist.

Also see:
» Read GET URL Variables Into An Associa...
» Array of all US states
» Search array elements for a substring
» Create a drop down menu from an array ...
» Unset unkown array element
» Random Image from Directory
» Parse RSS into array
» Random banner picker
» Quickly sort associative arrays
» Recursively traverse array
» Combining three arrays into one
» Combining two arrays into one
» Generate random string
» Check if array is associative
» Update MySQL Table Using An Array
» Rounded random numbers
» PHP to JavaScript Array
» Unique Array function
» Random Pronounceable Passwords
» Pick Randomly from Array
» Weighted Random Choice
» HEX to RGB array
» oci_bind_array_by_name() example
» Get All Files into an Array
» Filter Empty Array Elements

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
// This method only works where the elements exist AND are 
// sequentially numbered. If you unset() elements from the 
// array, you may end up picking elements that no longer exist. 
 
$quote = $quotes_array[RAND(0, COUNT($quotes_array) - 1)]; 
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org