vote up 0 vote down star

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

flag

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

3 Answers

vote up 3 vote down

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|flag
Thanks, tialaramex. Is it fair to say my first example is equivalent to $foo = ((boolean) $cat) && ((boolean) dog) ? – allyourcode Jul 16 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 at 0:39
Where does it say that logical operation expressions always evaluate to a boolean? – allyourcode Jul 16 at 4:20
vote up 1 vote down

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|flag
Yeah, but that's ugly. – allyourcode Jul 16 at 4:17
vote up 0 vote down

deleted cos I'm wrong!!!

link|flag
1  
not quite, as I explained in my edited answer, there are some surprising rules about how operands are coerced to boolean. If $dog is "" or "0" then it is false, but if it is "Hello" or even "False" then it is true. – tialaramex Jul 16 at 0:35
yeah thanks, I followed the link and see you're right :-) – David Archer Jul 16 at 0:36

Your Answer

Get an OpenID
or

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