Log in

View Full Version : using iif statements


AN-net
02-23-2004, 11:48 PM
can someone explain to me how to use these? can they used to check if a value is false or true and if true display something?

Velocd
02-24-2004, 12:01 AM
Syntax:


if (condition is met)
{
do this
}
// Below is optional.
else if(another condition is met)
{
do this
}
else
{
do this
}


Conditions are boolean expressions, evaluated under true or false.

For example:


if ($bbuserinfo['username'] == 'some_dude')
{
echo "Hey some_dude!";
}


Check out www.php.net for more information.

AN-net
02-24-2004, 12:09 AM
no, i mean iif statements that vb uses in vb3 coding but thanks for the help

filburt1
02-24-2004, 12:25 AM
no, i mean iif statements that vb uses in vb3 coding but thanks for the help

$variable = iif($expression, $truevalue, $falsevalue);

so

$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:

$i = 1;
echo ($i == 1 ? "i is one" : "i is not one");

AN-net
02-24-2004, 12:29 AM
so you have a true and false value after $blah==whatever?

Natch
02-24-2004, 01:10 AM
so you have a true and false value after $blah==whatever?
The format of this phrase
if ($this == "1") {
$do = $this;
}
else
{
$do = $that;
}

is functionally identical to the following in regular PHP
$do = ($this == "1") ? $this : $that ;
$do = iif($this == "1",$this,$that);

AN-net
02-24-2004, 03:31 AM
thanks guys