为什么我的php代码会绕过一些if语句?

时间:2012-07-27 00:08:40

标签: php if-statement

当我使用我的程序时,我想出了一个未知的错误。会发生什么是我的代码绕过了两个if语句。这是我的代码:

<?
session_start();
if ($_POST){
  $ao = trim($_POST['amountof']);
  $continue = true;
  if (strlen($ao) < 1){  ####First If-Statement Bypassed####
    $continue = false;
    $_SESSION['error'] = "Please enter in a value!";
  }
  if (strlen($ao) > 20){  ####Second If-Statement Bypassed####
    $continue = false;
    $_SESSION['error'] = "Your value has exceeded 20!";
  }
  if (!is_numeric($ao)){
    $continue = false;
    $_SESSION['error'] = "Value is not numeric!";
  }
}

?>
<form method="post">
<?
if (isset($_SESSION['error'])){
  print "<span style=\"color: red; font-weight: bold;\">" . $_SESSION['error'] . "                </span><br />";
}
?>
How many letters are you planning to process?<br />
<span style="font-size:.8em; color: grey;">You may not exceed 20</span><br />
<input type="text" name="amountof" style="width:25px;" maxlength="2"/>
<input type="submit" value="Continue" />
</form>

<? unset($_SESSION['error']); ?>

绕过的if语句在代码中标记。 谢谢!

3 个答案:

答案 0 :(得分:1)

试试:

<?php

 session_start();
 $_SESSION['error']='';

  if (isset($_POST['amountof'])){
  $ao = trim($_POST['amountof']);
  $continue = true;
  if (strlen($ao) < 1){ 
    $continue = false;
    $_SESSION['error'].= "Please enter in a value!<br/>";
  }

  if (!is_numeric($ao)){
    $continue = false;
    $_SESSION['error'].= "Value is not numeric!<br/>";
  }
  elseif ($ao > 20){ 
    $continue = false;
    $_SESSION['error'].= "Your value has exceeded 20!";
  }
}
?>
<form method="post">
<?php
 if (!empty($_SESSION['error'])){

 //......

或简化(注意用户可以键入负值或0当前将通过测试的内容)

if (!is_numeric($ao) || $ao<1 || $ao>20){
        $continue = false;
        $_SESSION['error']= "Please enter in a numeric value between 1 and 20";
      }

答案 1 :(得分:1)

如果没有看到一些示例数据,我相信您只是覆盖错误变量,而不是绕过if语句。让我们在没有输入任何内容的情况下运行代码。

第一个if语句中的代码运行,因为strlen($ ao)将小于1。 $ _SESSION ['error']将是“请输入值!”

现在第二个if语句中的代码没有运行,因为strlen($ ao)显然不超过20.

第三个if语句中的代码运行,因为空字符串不是数字。由于你要覆盖$ _SESSION ['error'],变量只是“值不是数字!”。因此,它似乎是第一个if语句被绕过。

尝试连接错误字符串而不是覆盖。

编辑:在我回答之前使用Molle博士发布的代码片段。

答案 2 :(得分:0)

您需要使用

if(isset($_POST)) {

第二行,而不是你正在使用的,因为$_POST的行为就像一个数组。