Kod
<?php
$tekst1 = 'a';
$tekst2 = 'b';
$tekst3 = 'c';
srand((float) microtime()*10000000);
$teksty = array($tekst1,$tekst2,$tekst3);
$losowe_teksty = array_rand($teksty, 1);
print $teksty[$losowe_teksty[0]];
?>
$tekst1 = 'a';
$tekst2 = 'b';
$tekst3 = 'c';
srand((float) microtime()*10000000);
$teksty = array($tekst1,$tekst2,$tekst3);
$losowe_teksty = array_rand($teksty, 1);
print $teksty[$losowe_teksty[0]];
?>