Random predefined string

Views: 67 Last modified: September 17th, 2011 Comments: 0

Show a random string. You can add as many strings as you want!

// Seed the generator
mt_srand((double)microtime()*1000000);

// Array
$strings = array();

// Random texts
$strings[] = 'Show me!';
$strings[] = 'Or me!';
$strings[] = 'Or maybe me';
$strings[] = 'Or would it be me?';

// Count array elements
$count = count($strings)-1;

// Pick random
$random = mt_rand(0, $count);

echo $strings[$random];
VN:F [1.9.13_1145]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

    Mail this!

    To: From:Sum {8+9} =  
    Anything to add ?

        You must be logged in to post a comment.