PHP Coding Style - Best Practices

Possible duplicate:
What is the encoding for PHP?

After coding for some time, similar to the coding style proposed by zend, im constantly discovers that I am told that they are changing the code at work. They prefer a different coding style. For example, a huge annoyance for them:

funtction testFunction { } 

instead

 function testFunction { 

}

For me, the first option is much more readable. The same goes for class decilations.

In any case, there are more such things, and I feel that the code that I write at work is much less readable than other code that I write using my own style.

Are there best industry standards for code standards?

+4
source share

All Articles