php从文本字段中回显随机值

时间:2012-10-08 22:30:28

标签: php

我想将所有文本框响应发布到results.php,然后随机选择一个要显示的响应。

形式:

<form action="results.php" method="post">
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input maxlength="30" name="friend[]" size="30" type="text" placeholder="Enter an option" />
<input type="submit" value="Submit" />

php内容(显然是错误的,但是这样的东西?)

foreach ($_POST['friend'] as $value) {          
    if ($value) {
      echo mt_rand($value);
    }
}

2 个答案:

答案 0 :(得分:1)

您可以使用array_rand

$random_input = $_POST['friend'][array_rand($_POST['friend'])];

答案 1 :(得分:0)

echo $_POST['friend'][ rand(0, count($_POST['friend']) - 1) ];