I have a conditional statement thus:
if($boolean && expensiveOperation()){ ...}
Does PHP have lazy boolean evaluation, i.e. will it
Yes, PHP does short-circuit evaluation.