php脚本不会抛出异常

时间:2012-03-24 14:03:53

标签: php mysql forms exception exception-handling

我正在尝试使用异常验证我的php表单,但不知何故它不起作用。如果用户在“nameg”中输入任何不是字符串的字符,并且在“amountg”中输入任何非整数字符,则应该抛出该异常。在这种情况下甚至可以使用例外:

if(!empty($_POST['nameg']) && !empty($_POST['amountg']))
{
    $user="rootdummy";
    $pass="password";
    $db="practice";
    $nameg=$_POST['nameg'];
    $amountg=$_POST['amountg'];

    try{
        if(!is_int($amountg) || !is_string($nameg)){
            throw new Exception("This is the exception message!");
        }
    }
    catch (Exception $e){
        $e->getMessage();
    }

    mysql_connect('localhost',$user,$pass) or die("Connection Failed!, " . mysql_error());
    $query="INSERT INTO practable (name,given) VALUES('$nameg',$amountg) ON DUPLICATE KEY UPDATE name='$nameg', given=IFNULL(given + $amountg,$amountg)";
    mysql_select_db($db) or die("Couldn't connect to Database, " . mysql_error());
    mysql_query($query) or die("Couldn't execute query! ". mysql_error());

    mysql_close() or die("Couldn't disconnect!");
    include("dbclient.php");
    echo "<p style='font-weight:bold;text-align:center;'>Information Added!</p>";
}

3 个答案:

答案 0 :(得分:3)

想必要输出异常?做:

echo $e->getMessage();

编辑:为了回应您之后关于脚本结尾的评论,请将MySQL查询放入try块中。

编辑2:更改了验证以回应您的评论。

if(!empty($_POST['nameg']) && !empty($_POST['amountg']))
{
    $user="rootdummy";
    $pass="password";
    $db="practice";
    $nameg=$_POST['nameg'];
    $amountg=$_POST['amountg'];

    try{

        if(!ctype_numeric($amountg) || !ctype_alpha($nameg)){
            throw new Exception("This is the exception message!");
        }

      mysql_connect('localhost',$user,$pass) or die("Connection Failed!, " . mysql_error());
      $query="INSERT INTO practable (name,given) VALUES('$nameg',$amountg) ON DUPLICATE KEY UPDATE name='$nameg', given=IFNULL(given + $amountg,$amountg)";
      mysql_select_db($db) or die("Couldn't connect to Database, " . mysql_error());
      mysql_query($query) or die("Couldn't execute query! ". mysql_error());

      mysql_close() or die("Couldn't disconnect!");
      include("dbclient.php");
      echo "<p style='font-weight:bold;text-align:center;'>Information Added!</p>";

    }
    catch (Exception $e){
        echo $e->getMessage();
    }
}

答案 1 :(得分:1)

你正在抓住它并执行几乎没有任何作用的声明。

$e->getMessage();只需将其作为字符串获取并将其抛弃而不回显它。

回显它或重新抛出,或者,如果你只想在那一点退出,根本不要捕获异常(你可以删除try和catch块)。

答案 2 :(得分:1)

确实如此,但除了抓住它之外,你对你的异常没有任何作用。

尝试

echo $e->getMessage()