The most important part is that you write code that is easy to read. Using function names like foo() and bar() for example are totally useless, so it's hard to say which one of the two you want to compare are better.
Next to that, the if example has some considerable flaws as well:
if is a language construct, but you use it like a function.
- you add vertical space into the if condition. This can make things hard to read as spaces are influencing the visual focus.
An alternative suggestion would be:
if (foo()) {
But you wanted to compare the two: Code is always in it's context. And readable code uses it's context. Both of your suggestions can be valid, the key point is that you can read the meaning from the code already:
conditionMet() && gotForIt();
if (conditionMet()) goForIt();
Decide for yourself. Just don't mix from one line to the other, so keep one style through your whole code.
foo() and bar()would be more common (or at least it should be (imo ;))). But I'm not a "pro" PHP developer... – Felix Kling Aug 6 '11 at 12:23mysql_connect(...) or die(), which falls in the same category I suppose. – Kerrek SB Aug 6 '11 at 12:24if (foo()) bar();if you want it on a single line. Or evenfoo() ? bar() : null;, if you want to. But besides being clever this is nothing but syntactic sugar. Say what conveys meaning, not what fits on a single line. – Tomalak Aug 6 '11 at 12:26