A really stupid logical expression question, but I'm brain farting at the moment
You have this logical statement:
$a && $b
Since the && operator is evaluated from left to right, if the $a resolves to FALSE, then $b will never be checked, correct?
$a && $b
Since the && operator is evaluated from left to right, if the $a resolves to FALSE, then $b will never be checked, correct?
