Quote:
Originally Posted by AN-net
no, i mean iif statements that vb uses in vb3 coding but thanks for the help
|
PHP Code:
$variable = iif($expression, $truevalue, $falsevalue);
so
PHP Code:
$i = 1;
echo iif($i == 1, "i is one", "i is not one");
It is exactly the same as the built-in PHP ternary operator, and exactly the same in C, C++, and Java:
PHP Code:
$i = 1;
echo ($i == 1 ? "i is one" : "i is not one");