一聚教程网:一个值得你收藏的教程网站

热门教程

php数组随机排序几种方法

时间:2022-06-24 15:34:53 编辑:袖梨 来源:一聚教程网


php 中可以使用shuffle函数实现数组随机排序功能。

 代码如下 复制代码

$test=array();
$test[]=array(
        'title'=>'Q1.较为科学的安全期算法是什么?',
        );
$test[]=array(
        'title'=>'Q2.较为科学的安全期算法是什么?',
        );
$test[]=array(
        'title'=>'Q3.较为科学的安全期算法是什么?',
        );
$test[]=array(
        'title'=>'Q4.较为科学的安全期算法是什么?',
        );
//随机排序
shuffle($test);
print_r($test);
?>

热门栏目