랜덤으로 섞을때 유용한 함수가 있어요.
바로 shuffle 함수~
<?php $list[] = '1'; $list[] = '2'; $list[] = '3'; shuffle($list); foreach($list as $value) { echo $value; } ?>