I have this if statement that tests for the 2 conditions below. The second one is a function goodToGo() so I want to call it unless the first condi
if
goodToGo()
Yes. The two blocks are the same. PHP, like most (but not all) languages, uses short-circuit evaluation for && and ||.
&&
||