//shuffle()
//函数用于打乱元素的位置;
//返回值为打乱后的数组
实例
$arr1 = array('金','木','水','火','土');
shuffle($arr1);
var_dump($arr1);
运行实例 »点击 "运行实例" 按钮查看在线实例
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!