Sth. that entered my mind when I read another post:
Certainly all of you who develop in Java are aware that there's a set of Code Conventions, officially composed by Sun (that means e.g. that you are strongly encouraged to write
if (condition) {
statements;
} else {
statements;
}
instead of
if (condition)
{
statements;
}
else
{
statements;
}
Now, my question: Is there something similar for PHP. Something official that is, not just something someone thought would be a good idea?