if语句中的if语句

时间:2011-06-26 10:11:05

标签: php

如何在if语句中放入if语句?现在就是这样;

<?php
if($var1===$var2)
{
if($condition1 > 0)
{
*lots of code here*
}
}
else
{
*lots of code here again*
}
}
?>

这意味着我希望$ condition1大于0 IF $ var1与$ var2不匹配。但是就目前而言,我正在复制“许多代码部分”,所以我只想;

if($var1!=$var2){ -apply if statement- } 
*lots of code here*
if($var1!=$var2){ -close if statement- } 

但是怎么样?

3 个答案:

答案 0 :(得分:1)

您有正确的方法来组合两个if语句。但是,当var1等于var2或者condition1大于0时,你想要运行大量代码。你可以这样写:

<?php
if ($var1===$var2 || $condition1 > 0)
{
    *lots of code here again*
}
?>

||运算符的意思是'或'。

答案 1 :(得分:1)

<?php
$a = ($var1 === $var2);
$b = ($condition1 > 0);

if (!$a || $b)
{
*lots of code here*
}
?>

答案 2 :(得分:1)

也许我没有得到它,但我会这样做:

if($var1 === $var2 || $condition1>0){

//lots of code here

}else{

}

编辑 - 也许你不想这样 - 如果var1等于var 2,则读取如果var1不等于var2而条件1> 0则执行大量代码

if($var1 === $var2 || ($var1 !== $var2 && $condition1>0)){

//lots of code here

}else{


}