Which Coding convention to follow for PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T04:57:46Zhttp://stackoverflow.com/feeds/question/139427http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/139427/which-coding-convention-to-follow-for-php5Which Coding convention to follow for PHP? Igor Drincic2008-09-26T13:13:23Z2009-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#13945319Answer by Prakash for Which Coding convention to follow for PHP? Prakash2008-09-26T13:18:31Z2008-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#1394863Answer by Daok for Which Coding convention to follow for PHP? Daok2008-09-26T13:24:15Z2008-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#1395150Answer by Treb for Which Coding convention to follow for PHP? Treb2008-09-26T13:29:50Z2008-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#1397264Answer by Sajid for Which Coding convention to follow for PHP? Sajid2008-09-26T14:07:26Z2008-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#12872700Answer by David for Which Coding convention to follow for PHP? David2009-08-17T10:39:44Z2009-08-17T10:39:44Z<p><a href="http://www.symfony-project.org" rel="nofollow">http://www.symfony-project.org</a></p>