我想使用 mt_random 生成一个数字,这就是代码的作用,然后我想看看它是否等于数组中的一个值以打印出文本版本。
示例:如果结果为 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>