in reply to Re: Re: Conditional style (if, &&) query
in thread Conditional style (if, &&) query
is identical toreturn 1 && $a && $b;
is identical toreturn $a && $b;
So I don't follow your last paragraph...return 1 && 1 && 1 && $a && $b
Update
Were you perhaps thinking of:
which will "coerce" all TRUE responses to be 1 instead of the value of $b?return $a && $b && 1;
-Blake
|
|---|