当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > array_rand() 函数
The array_rand() function returns a random key from an array, or it returns an array of random keys if you specify that the function should return more than one key.
array_rand()函数用于随机返回数组中的一个键;如果你希望随机返回多个键,那么他将以数组的形式返回这些键。
array_rand(array,number) |
Parameter参数 | Description描述 |
---|---|
array | Required. Specifies an array 必要参数。指定一个数组 |
number | Optional. Default 1. Specifies how many random keys to return 可选参数。默认值为1。指定随机返回的键数量 |
<?php $a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse"); print_r(array_rand($a,1)); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
b |
An array with string keys:
数组中包含字符串键的案例:
<?php $a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse"); print_r(array_rand($a,2)); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
Array ( [0] => c [1] => b ) |