如何建立数组并显示随机值?

时间:2016-03-06 20:42:19

标签: php arrays random

:) 我不能为数组编写代码。例如:

我想拥有页面并使用包含导入文件和数组。在数组中,我想放入新的评论示例:

id-1 = first one
id-2 = second one 
etc... 
id-333 = other comment

接下来我想从数组中显示随机值。例如:

Mr. Bad coder write comment: 
first one 

这是怎么回事?我已经阅读了很多教程,我的代码看起来像这样:

array.php文件:

$array_names = array(
  '1' => 'Mike',
  '2' => 'John',
  '3' => 'Ana',
);

要显示数组的文件:

<?php 
include('array.php');
echo $array_names; ?> was write a comment!

1 个答案:

答案 0 :(得分:0)

如果你知道数组中表示从min到max的每个键,你可以选择一个随机值:

$randomKey = mt_rand($min, $max);
echo $array_names[$randomKey]

如果数组中有其他类型的键,那么最简单的方法是在执行相同的操作之前创建一个带有顺序键的新数组。