2016-10-13 00:16:48 点击量:8 标签: 收藏本文
[php]php随机从数组中随机取出一个或多个单元
- Example #1 array_rand() 例子
- <?php
- srand((float) microtime() * 10000000);
- $input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
- $rand_keys = array_rand($input, 2);
- print $input[$rand_keys[0]] . " ";
- print $input[$rand_keys[1]] . " ";
- ?>
- 参见 shuffle()。