up vote 0 down vote favorite
share [g+] share [fb]

In other programming languages (Python, Ruby, Scheme), I'm used to doing things like

$foo = $cat && $dog;
$bar = $fruit || $vegetable;

I would expect that $foo would get assigned to $dog if $cat were null, and $bar to $fruit if $fruit were NOT null. I seem to recall getting burned for doing things like this in PHP, and I've never learned exactly how logical operators handle non-boolean operands. Can someone explain or point me in the right direction? I tried reading the following page in the official docs, but it doesn't deal with non-booleans:

http://us3.php.net/manual/en/language.operators.logical.php

link|improve this question

74% accept rate
I also read the page on type juggling (us.php.net/manual/en/language.types.type-juggling.php), and that still didn't clarify the issue for me. – allyourcode Jul 16 '09 at 0:35
feedback

2 Answers

up vote 4 down vote accepted

In PHP the result of a boolean comparison is always a boolean, the operands are coerced to boolean.

http://us3.php.net/manual/en/language.types.boolean.php

explains which values, when they are coerced, will becomes true or false.

link|improve this answer
Thanks, tialaramex. Is it fair to say my first example is equivalent to $foo = ((boolean) $cat) && ((boolean) dog) ? – allyourcode Jul 16 '09 at 0:38
I believe this is an accurate characterisation, but I have not tested it extensively so I can't promise there aren't any kinks. – tialaramex Jul 16 '09 at 0:39
Where does it say that logical operation expressions always evaluate to a boolean? – allyourcode Jul 16 '09 at 4:20
feedback

Would this work for you?

$foo = $cat ? $cat : $dog;

The first $cat will get turned into a Boolean based on known rules. If it's true then $foo will be $cat otherwise it's $dog.

link|improve this answer
Yeah, but that's ugly. – allyourcode Jul 16 '09 at 4:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.