mixed array_rand ( array $array [, int $num = 1 ] )
# Picks one or more random entries out of an array, and returns the key (or keys) of the random entries. It uses a pseudo random number generator that is not suitable for cryptographic purposes.
Picks one or more random entries out of an array, and returns the key (or keys) of the random entries. It uses a pseudo random number generator that is not suitable for cryptographic purposes.
会随机返回指定数组中的键,根据需求
$num
会返回一个键 或 以数组
的形式返回多个键。如果你有数组
现在想每次随机输出数组中的一个元素,则可以采用以下方式获取:
以此同理可以实现其他的随机元素键并获取数组的随机元素。
如果第二个参数为1或者没有时, 返回的并不是数组, 而只是一个数字