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

最新下载

热门教程

php数组随机排序几种方法

时间:2013-11-04 编辑:简简单单 来源:一聚教程网


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);
?>

热门栏目