PHP coding standards - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T11:52:47Zhttp://stackoverflow.com/feeds/question/307089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307089/php-coding-standards2PHP coding standardsBen2008-11-20T22:23:24Z2009-08-11T20:05:45Z
<p>I've been looking for some guidelines on how to layout PHP code. I've found some good references, such as the following:</p>
<p><a href="http://www.dagbladet.no/development/phpcodingstandard/" rel="nofollow">http://www.dagbladet.no/development/phpcodingstandard/</a></p>
<p>and <a href="http://stackoverflow.com/questions/5214/whats-a-good-standard-code-layout-for-a-php-application">this question</a> on SO.</p>
<p>However, none of that quite gets to what I'm specifically wondering about, which is the integration of HTML and PHP. For example:</p>
<ol>
<li>is it OK to have a PHP file that starts out with HTML tags and only has PHP inserted where needed? Or should you just have one section of php that contains everything?</li>
<li>If you have a chunk of PHP code in the middle of which is a set of echo's that just output a fixed bit of HTML, is it better to break out of php and just put the HTML directly? </li>
<li>Should functions all be defined in dedicated php files, or is it ok to define a bunch of functions at the top of a file and call them later on in that same file?</li>
</ol>
<p>There's probably other questions I'd like to ask, but really I'm looking for someone to point me at some kind of resource online that offers guidance on the general idea of how HTML and PHP should be combined together.</p>
<p>Thanks!</p>
<p>Ben </p>
http://stackoverflow.com/questions/307089/php-coding-standards/307115#3071154Answer by Sherm Pendley for PHP coding standardsSherm Pendley2008-11-20T22:28:53Z2008-11-21T04:07:24Z<p>Combining programming code and output data (including HTML) is IMHO a very bad idea. Most of the PHP gurus I know use a template engine such as <a href="http://www.smarty.net/" rel="nofollow">Smarty</a> to help keep the two things separate.</p>
http://stackoverflow.com/questions/307089/php-coding-standards/307151#3071511Answer by troelskn for PHP coding standardstroelskn2008-11-20T22:40:29Z2008-11-20T22:40:29Z<p>There's really not a single, common standard for these things. Most languages are more restrictive than PHP in this sense.</p>
<p>In the later years, a lot of so-called frameworks have emerged, and amongst other things they define a set of rules for everything from naming over where to place files and to which style your code should follow. There are several frameworks around, so you can't really pick one and call it the standard. However, most frameworks have a subset of commonality. For example, most follows some variant of the <a href="http://pear.php.net/manual/en/standards.php" rel="nofollow">PEAR code-standard</a>.</p>
http://stackoverflow.com/questions/307089/php-coding-standards/307164#3071641Answer by Nick for PHP coding standardsNick2008-11-20T22:42:12Z2008-11-20T22:42:12Z<p>I usually try and follow the standards that are set by the language's core libraries.... oh wait.</p>
<p>Seriously through - you should try and follow the <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC pattern</a> in any web application as it is pretty much standard practice regardless of language. In php this can be achieved in a quick and dirty way by treating index.php as your controller and separating data logic and presentation by file. This small step will at least let you move your code to a full featured framework when and if you choose.</p>
http://stackoverflow.com/questions/307089/php-coding-standards/307168#3071681Answer by acrosman for PHP coding standardsacrosman2008-11-20T22:42:36Z2008-11-20T22:42:36Z<p>Use a template engine when you can. If you haven't learned one, or don't want the overhead (which is minimal), use practices that cause you to have quick and dirty templating:</p>
<ul>
<li>Functions that do not display anything have no place in a file that does display something.</li>
<li>Print variables, not HTML. Whenever outputting HTML, break out of the PHP and write HTML with print statements to handle any small details that are needed (actions for forms, IDs for controls, etc).</li>
<li>Remember, when you include a file that breaks out of the PHP to print content, that will be treated the same as if you do it in the main file. So you can create simple templates that just included PHP files, those files will print variables in the right places. Your index.php (or whatever) does all the real work, but all the display is done by the secondary "template".</li>
</ul>
<p>Many PHP tutorials intermix logic and display code. It took me years to break the bad habits that encouraged in me. In my experience you can't separate things too much in PHP, and entropy will pull you towards intermixed code if you don't fight it.</p>
http://stackoverflow.com/questions/307089/php-coding-standards/1262603#12626030Answer by Paul Biggar for PHP coding standardsPaul Biggar2009-08-11T20:05:45Z2009-08-11T20:05:45Z<p>Coding standards should be more than how to layout your syntax, but sadly that's what they tend to be in PHP.</p>
<p>FWIW, <a href="http://phpcompiler.org" rel="nofollow">phc</a> will pretty print your code in the Zend style.</p>