The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?php

trySomething() || trySomethingElse();
if (trySomething() === FALSE) {
    trySomethingElse();
}

$success || fail();
if ($success === FALSE) {
    fail();
}

$foo = ($bar || $foo);

doSomething() || die();

if ($something || somethingElse()) {
    while ($foo && $bar) {
    }

    do {
        // Code here.
    }
    while ($foo && $bar);
}

?>