0

我想使用 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>
4

1 回答 1

0

你有数组的键,所以你可以获取它的值......

$random = 2;
$string = $array[$random];

你甚至可以让你的代码更简洁:

$array = ["one", "two", "three", "four", "five", "six"];
$string = $array[$random-1];

数组默认以 0 开头,因此$array[0]将包含“一”,这就是为什么您需要从所需的实际值中减去 1。

$myArr = array('foo', 'bar');
// would be identical to
$myArr = array(0 => 'foo', 1 => 'bar');

这称为基于零的索引

于 2013-09-19T12:36:36.760 回答