in reply to Re: Re: Conditional style (if, &&) query
in thread Conditional style (if, &&) query

Your last bit of code confused me....
return 1 && $a && $b;
is identical to
return $a && $b;
is identical to
return 1 && 1 && 1 && $a && $b
So I don't follow your last paragraph...

Update
Were you perhaps thinking of:

return $a && $b && 1;
which will "coerce" all TRUE responses to be 1 instead of the value of $b?

-Blake