087-把PHP数组中的元素按随机顺序重新排列shuffle
2020-12-12 22:57
标签:gre shuff nbsp int com 排序 inf mamicode span 087-把PHP数组中的元素按随机顺序重新排列shuffle 标签:gre shuff nbsp int com 排序 inf mamicode span 原文地址:https://www.cnblogs.com/tianpan2019/p/11001529.htmlphp
$arr=array(3,23,‘A‘,‘f‘,‘123‘,‘hello‘); //定义一个数组
echo ‘排序之前的数组信息:
‘;
print_r($arr);
shuffle($arr); //对数组进行随机排序
echo ‘
排序之后的数组信息:
‘;
print_r($arr); //输出数组信息
#该函数为数组中的元素分配新的键名。已有键名将被删除
$my_array = array("a" => "red", "b" => "green", "c" => "blue");
echo ‘
排序之前的数组信息:
‘;
print_r($arr);
shuffle($my_array);
echo ‘
排序之后的数组数组中的元素分配新的键名:
‘;
print_r($my_array);
?>
文章标题:087-把PHP数组中的元素按随机顺序重新排列shuffle
文章链接:http://soscw.com/essay/23731.html