//shuffle() //函数用于打乱元素的位置; //返回值为打乱后的数组实例 $arr1 = array('金','木','水','火','土'); shuffle($arr1); var_dump($arr1);运行实例 »点击 "运行实例" 按钮查看在线实例