sn0n.com , Blog Archive here.
Relaunch Soon...
Input:
<?php
 $test = array('1', '2', '3', '4',);
 shuffle($test);
 foreach ($test as $text) {
  echo "$text \r\n";
 }
?>
Output:
4 
2 
1 
3