我想使用mt_random来生成一个数字,这就是代码所做的,然后我想看看它是否等于数组中打印出文本版本的值。
示例:如果结果为2而密钥[2]为2,则打印“2”
此示例中的 $nul
是最终输出。
最终在此论坛上注册!我要感谢大家多年来帮助人们。我的第一个问题所以请不要打击我哈哈!
我想使用mt_random来生成一个数字,这就是代码所做的,然后我想看看它是否等于数组中打印出文本版本的值。
<?php
$min = 1;
$max = 6;
$array = [
"1" => "one",
"2" => "two",
"3" => "three",
"4" => "four",
"5" => "five",
"6" => "six",
];
if (!isset($_POST["submit"]))
{
$nul = "Druk op gooi";
}
if (isset($_POST["submit"]))
{
$random = mt_rand($min,$max);
$nul = $random;
}
?>
<form action="dobbelen3.php" method="post">
<div class="dobbel" id="dobbelid">
<?php
if(isset($_POST['submit']))
{
echo "<img src='images/$nul.JPG' width='121' height='115' />";
}
?>
</div>
<input type="text" name="Project" value="
<?php
echo $nul;
?>
" style="width:121px;"/>
<input type="submit" name="submit" value="submit" />
</form>
答案 0 :(得分:0)
你有数组的键,所以你可以获取它的值......
$random = 2;
$string = $array[$random];
您甚至可以使您的代码更简洁:
$array = ["one", "two", "three", "four", "five", "six"];
$string = $array[$random-1];
默认情况下,数组以0开头,因此$array[0]
将包含“1”,这就是您需要从实际值中减去1的原因。
$myArr = array('foo', 'bar');
// would be identical to
$myArr = array(0 => 'foo', 1 => 'bar');
这称为零基础索引