> Yes it is not documented. I prefer the } else { style. 

Personally I like

        if ($foo)
        {
        ....
        } else
        {
        ...
        }

or

        if ($foo)
        {
        ....
        }
        else
        {
        ...
        }

then all braces are in same col.

James

Reply via email to