BEEP wrong :)

http://www.php.net/manual/en/language.operators.php#language.operators.precedence

therefore:

$a AND $b OR $c AND $d

is not equal

$a AND $b || $c AND $d

but is equal to

$a && $b || $c && $d

-- red

Evan Nemerson wrote:
On Sunday 25 April 2004 12:14 am, Aidan Lister wrote:

if (cond || cond2)

OR

if (cond OR cond2)


What do you use, and why?


Doesn't matter- personal preference.



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to