Is it too unwieldy without placeholder variables, like this?
if ($recFono->field_as_text(102) or $recFono->field_as_text(104)) { something(); }
If so, can your data structure be more concise? Perhaps if ($Fono->text(102) or $Fono->text(104)) {
Otherwise, as moritz says.
In reply to Re: logical non-short-circuit operators
by hbm
in thread logical non-short-circuit operators
by december
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |