当前位置:Gxlcms > PHP教程 > shuffle函数怎么用

shuffle函数怎么用

时间:2021-07-01 10:21:17 帮助过:34人阅读

PHP shuffle() 函数把数组中的元素按随机顺序重新排列。

php shuffle()函数 语法

作用:把数组中的元素按随机顺序重新排序:

语法:

shuffle(array)

参数:

array 必需。规定要使用的数组。

说明:若成功则返回 TRUE,若失败则返回 FALSE。

php shuffle()函数 示例1

<?php
$a = array("class" => "Gxl网","name" => "西门","job" => "讲师");
shuffle($a);
print_r($a);
?>

输出:

Array ( [0] => 西门 [1] => Gxl网 [2] => 讲师 )

php shuffle()函数 示例2

<?php
$my_array = array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow","e"=>"purple");
shuffle($my_array);
print_r($my_array);
?>

输出:

Array ( [0] => yellow [1] => green [2] => red [3] => purple [4] => blue )

本篇文章就是关于PHP shuffle函数的介绍,希望对需要的朋友有所帮助!

以上就是shuffle函数怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行