实例说明:
<!DOCTYPE html> <html> <body> <?php $my_array = array("red","green","blue","yellow","purple"); shuffle($my_array); print_r($my_array); ?> <p>Refresh the page to see how shuffle() randomizes the order of the elements in the array.</p> </body> </html>
标签含义:
shuffle() 函数把数组中的元素按随机顺序重新排列。
该函数为数组中的元素分配新的键名,已存在的键名将被删除(参见下面的实例 1)。
源代码运行结果如下:
实例1
<!DOCTYPE html> <html> <body> <?php $my_array = array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow","e"=>"purple"); shuffle($my_array); print_r($my_array); ?> <p>Refresh the page to see how shuffle() randomizes the order of the elements in the array.</p> </body> </html>
实例1源代码运行结果如下:
相关文章
标签:php
- •PHP网站打开空白的常见解决方法有哪些?
- •Windows系统下用phpStudy(小皮)怎么搭建php网站?(图文教程)
- •Windows系统下用宝塔如何搭建php(安装版)网站?(图文教程)
- •搭建php网站,提示“exif_read_data 不支持”的解决办法?
- •php如何使用glob函数返回一个包含匹配指定模式的文件名/目录的数组
- •php如何使用fpassthru函数从打开的文件中读数据,直到文件末尾EOF,并向输出缓冲写结果。
- •网站服务器怎么选择合适自己的操作系统?
- •Windows系统怎么配置apache+php+mysql环境?(图文教程)
- •Windows iis环境下怎么创建织梦php网站?(图文教程)
- •php如何使用date函数格式化本地日期和时间