So und ich setz nochmal ein drauf! Welchen Programmier Stil benutzt ihr?
Ich "benutze" den PEAR Coding Style, find den persönlich am übersichtlichsten.
PHP-Code:
// PEAR Coding standart
if ($a == "<condition>") {
echo "<body>";
}
// Allman or BSD style
if ($a == "<condition>")
{
echo "<body>";
}
// GNU-Style
if ($a == "<condition>")
{
echo "<body>";
}
// Whitesmiths style
if ($a == "<condition>")
{
echo "<body>";
}
Kommentar