宜昌本地软件开发与弱电工程服务商
项目咨询 · 快速响应

[php]php随机从数组中随机取出一个或多个单元

2016-10-13 00:16:48 点击量:8 标签: 收藏本文

[php]php随机从数组中随机取出一个或多个单元

  1. Example #1 array_rand() 例子 
  2. <?php 
  3. srand((float) microtime() * 10000000); 
  4. $input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank"); 
  5. $rand_keys = array_rand($input, 2); 
  6. print $input[$rand_keys[0]] . " "; 
  7. print $input[$rand_keys[1]] . " "; 
  8. ?> 
  9.  
  10. 参见 shuffle()。