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

if ($foo || $bar) {}
if ($foo||$bar && $baz) {}
if ($foo|| $bar&&$baz) {}
if ($foo  ||   $bar   && $baz) {}

// Spacing after || below is ignored as it is EOL whitespace.
if ($foo ||    
    $bar
    && $baz
) {
}

if ($foo||
    $bar
    &&$baz
) {
}

?>