如果等于php,请查找具有值的Array键

时间:2013-09-19 12:31:29

标签: php arrays variables if-statement equals

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

1 个答案:

答案 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');

这称为零基础索引