I have a conditional statement thus:
if($boolean && expensiveOperation()){ ...}
Does PHP have lazy boolean evaluation, i.e. will it
PHP does have short circuit evaluation. Your example would be the proper use of it:
http://en.wikipedia.org/wiki/Short-circuit_evaluation#Support_in_common_programming_languages