Home >php教程 >php手册 >php数组随机排序几种方法

php数组随机排序几种方法

WBOY
WBOYOriginal
2016-06-13 09:51:491179browse

在php中如果我们要让数组随机排序只要使用shuffle函数即可了,但shuffle只可以使用一维数组哦,下面小编来给大家介绍几种数组排序方法。


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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn