php数组随机排序实现方法_PHP教程

WBOY
Release: 2016-07-13 09:50:49
Original
852 people have browsed it

php数组随机排序实现方法

本文实例讲述了php数组随机排序实现方法。分享给大家供大家参考。具体实现方法如下:

1

2

3

4

5

$array = array('A','2','3','4','5','6','7','8','9','10','J','Q','K');

shuffle($array); //随机排序数组

print_r($array); //输出数组

?>

运行结果如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

Array

(

[0] => Q

[1] => 3

[2] => 5

[3] => 2

[4] => 10

[5] => 9

[6] => K

[7] => 4

[8] => J

[9] => 6

[10] => 7

[11] => 8

[12] => A

)

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.com true http://www.bkjia.com/PHPjc/1016471.html TechArticle php数组随机排序实现方法 本文实例讲述了php数组随机排序实现方法。分享给大家供大家参考。具体实现方法如下: 1 2 3 4 5 ?php $array = arra...
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!