0
if (intval(($text) > 5)) {
  header("Location: http://a???.php");
} else {
  header("Location: http://a???/show.php");
}

我想比较输入的 int 值$test是否大于 5(12345,12321,22222)。但它不起作用

if (intval(($text) > 5)) //compare the value entered to see if it's greater than 5
4

2 回答 2

2

您需要先转换为int,然后进行比较。尝试:

if(intval($text) > 5) ...
于 2013-03-06T16:42:15.450 回答
1

您的if声明中有一些额外的括号。

if (intval($text) > 5) // That should do it
于 2013-03-06T16:42:07.853 回答