dongtuan5367 2016-11-24 21:22
浏览 24
已采纳

PHP返回随机数组

I am trying to create a new array from an existing one with a random number of records between 2 and 10, I have this so far

//Select a random number
$random_number = (rand(2,10));

// Setup an array of names
$names = array("john", "joe", "simon", "peter", "paul");

// Create new array
$random_field_names = array_rand($names, $random_number);

print_r($random_field_names);

This gives me an array that looks like this

Array
(
    [0] => 0
    [1] => 10
    [2] => 11
)

Where am I going wrong?

  • 写回答

3条回答 默认 最新

  • dongtang5057 2016-11-24 21:31
    关注

    The description of array_rand explains why you don't get the names (I stress in bold):

    Picks one or more random entries out of an array, and returns the key (or keys) of the random entries.

    You seem to want the values. That you can achieve like this:

     array_intersect_key($names,  array_flip(array_rand($names, $random_number)));
    

    Also make sure your random number is not greater than the array size:

    $random_number = rand(2,5);
    $names = array("john", "joe", "simon", "peter", "paul");
    $result = array_intersect_key($names,  array_flip(array_rand($names, $random_number)));
    print_r ($result);  
    

    Note that the result maintains the original keys. If you want to renumber the keys to get an indexed array starting with index 0, then apply array_values to the result:

    $result = array_values(array_intersect_key($names,  array_flip(array_rand($names, $random_number))));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?