在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);
?>
|
http://www.bkjia.com/PHPjc/632669.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632669.htmlTechArticle在php中如果我们要让数组随机排序只要使用shuffle函数即可了,但shuffle只可以使用一维数组哦,下面小编来给大家介绍几种数组排序方法。...
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn