Which Coding convention to follow for PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T04:57:46Z http://stackoverflow.com/feeds/question/139427 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php 5 Which Coding convention to follow for PHP? Igor Drincic 2008-09-26T13:13:23Z 2009-08-17T10:39:44Z <p>Should I stick with Sun's Java code conventions for PHP code?</p> http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php/139453#139453 19 Answer by Prakash for Which Coding convention to follow for PHP? Prakash 2008-09-26T13:18:31Z 2008-09-26T13:18:31Z <p>For PHP, i'd suggest to follow <a href="http://framework.zend.com/manual/en/coding-standard.coding-style.html" rel="nofollow">Zends suggestions</a></p> <p>As you might know, <a href="http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why">Zend is the most widely used framework!</a></p> http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php/139486#139486 3 Answer by Daok for Which Coding convention to follow for PHP? Daok 2008-09-26T13:24:15Z 2008-09-26T13:24:15Z <p>If you are in a business follow the business code convention.</p> <p>If it's for a personal project you can get the specific language specification (if you do Java than Java, if you do Php than PHP). If it's your personal project you can change few things if you desire...</p> <p>If you do open source project, you should go see what's already in place.</p> http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php/139515#139515 0 Answer by Treb for Which Coding convention to follow for PHP? Treb 2008-09-26T13:29:50Z 2008-09-26T13:29:50Z <p>There are many different coding conventions out there. Have a look at what other people use (read some example code and see how easy it is to understand what is being done) and take your pick.</p> <p>The important part is to choose one and stick to it.</p> http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php/139726#139726 4 Answer by Sajid for Which Coding convention to follow for PHP? Sajid 2008-09-26T14:07:26Z 2008-09-26T14:07:26Z <p>You have a number of options:</p> <p>Zend: <a href="http://framework.zend.com/manual/en/coding-standard.html" rel="nofollow">http://framework.zend.com/manual/en/coding-standard.html</a></p> <p>Pear: <a href="http://pear.php.net/manual/en/standards.php" rel="nofollow">http://pear.php.net/manual/en/standards.php</a></p> <p>Wordpress: <a href="http://codex.wordpress.org/WordPress_Coding_Standards" rel="nofollow">http://codex.wordpress.org/WordPress_Coding_Standards</a></p> <p>But like prakash suggests, Zend is a good choice.</p> http://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php/1287270#1287270 0 Answer by David for Which Coding convention to follow for PHP? David 2009-08-17T10:39:44Z 2009-08-17T10:39:44Z <p><a href="http://www.symfony-project.org" rel="nofollow">http://www.symfony-project.org</a></p>