PHP best practices for naming conventions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T08:30:52Z http://stackoverflow.com/feeds/question/332831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions 5 PHP best practices for naming conventions alex 2008-12-02T02:12:39Z 2009-06-02T22:11:43Z <p>I recently started these naming conventions..</p> <p>all functions &amp; variables = camelCase</p> <p>constants with define() = ALL_CAPS_AND_UNDERSCORES</p> <p>Now I see a lot of other people mix up camelCase and underscores and they seem to have some sort of convention to it... What do you use and what is best? I've heard that public and private functions should have underscores before some.. I assume private have 2 underscores as in __construct() ?</p> <p>Thank you! </p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/332847#332847 3 Answer by nickf for PHP best practices for naming conventions nickf 2008-12-02T02:24:17Z 2008-12-02T02:24:17Z <p>The methods with two underscores at the start are usually what's called "magic" methods. This includes <code>__toString()</code>, <code>__call()</code>, <code>__get()</code>, and <code>__set()</code>. There are more, but as far as naming conventions go, all you need to know is <strong>don't use a double underscore for your own method names</strong>. The double underscore was added to avoid conflicts with user functions, so adding your own defeats the purpose. :)</p> <p>Constants are generally all in caps with underscores between. Sometimes they're prefixed with a common library name or something to show which constants are related to each other. for example: <code>ENT_QUOTES</code>, <code>ENT_NO_QUOTES</code></p> <p>Variables and function names should be lowerCamelCase, whereas class names should be UpperCamelCase.</p> <p>Another convention is to start private variables and functions with a (single) underscore. This doesn't do anything special, though some frameworks (who still need PHP4 compatibility) treat these members as private implicitly. Given PHP5 has the <code>private</code> keyword, using an underscore before your private variables/functions is optional.</p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/332853#332853 4 Answer by orlandu63 for PHP best practices for naming conventions orlandu63 2008-12-02T02:28:16Z 2008-12-02T02:28:16Z <pre><code>class TestThing { public $objectProperty; public function methodName() { } } function function_name( $argument = null ) { } $variable_name = 'hi'; //Non-object $TestThing = new TestThing; //Object </code></pre> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/332854#332854 7 Answer by CMS for PHP best practices for naming conventions CMS 2008-12-02T02:30:09Z 2008-12-02T02:30:09Z <p>I recommend you to see some well known PHP projects, and review their naming conventions and coding standards, then you will be able to judge which conventions you will be able to follow.</p> <p>Here are a few good examples:</p> <ul> <li><a href="http://framework.zend.com/manual/en/coding-standard.html" rel="nofollow">Zend Framework Coding Standard for PHP</a></li> <li><a href="http://pear.php.net/manual/en/standards.php" rel="nofollow">PEAR Coding Standards</a></li> <li><a href="http://www.horde.org/horde/docs/?f=CODING_STANDARDS.html" rel="nofollow">Horde Coding Standards</a></li> </ul> <p>And remember most important thing is being <strong>consistent</strong> in your naming conventions and coding style. </p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/333900#333900 2 Answer by Rob Young for PHP best practices for naming conventions Rob Young 2008-12-02T13:23:36Z 2008-12-02T13:23:36Z <p>The double underscore methods mentioned by nickf are called 'magic methods'. A full list can be found at <a href="http://uk3.php.net/oop5.magic" rel="nofollow">http://uk3.php.net/oop5.magic</a></p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/372895#372895 0 Answer by Adam for PHP best practices for naming conventions Adam 2008-12-16T21:51:49Z 2008-12-16T21:51:49Z <p>The standards you choose can vary a lot due to the language used. For example, in php all variables start with a $, so there's no need for a separate style to differentiate them. Thus you can do something like $name = new name(). I personally like this convention.</p> <p>camelCase is an interesting idea but I just find it too ugly to use. I've adjusted my preferences several times over 20 years of programming, including dabbling in hungarian notation (talk about ugly!). Now I favor the following simple system:</p> <p>$var_name FuncName() ClassName CONST_NAME</p> <p>I also use an underscore prefix to indicate anything extraordinary about the item in question.</p> <p>I think it's important not to be a nazi about the rules either, and remember the purpose of all this is readability and ease of use. I break these rules in limited cases for convenience. For example I have a heavily used, core class named "sys". I chose all lower case since because it is referenced so often.</p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/372921#372921 3 Answer by Logan Serman for PHP best practices for naming conventions Logan Serman 2008-12-16T22:03:03Z 2008-12-16T22:03:03Z <p>Personally, I use "unix_hacker" style for everything except for classes.</p> <pre><code>$instance = new Class() $var_name = 5; $x = get_x(); </code></pre> <p>I used to use camel-case, but I switched so that my code would look more 'native' with PHP's built-in functions.</p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/942097#942097 1 Answer by RFelix for PHP best practices for naming conventions RFelix 2009-06-02T21:54:20Z 2009-06-02T21:54:20Z <p>I found this link for a PHP Coding Standard that doesn't look too bad: <a href="http://www.dagbladet.no/development/phpcodingstandard/" rel="nofollow">http://www.dagbladet.no/development/phpcodingstandard/</a></p> http://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions/942152#942152 1 Answer by Wim Leers for PHP best practices for naming conventions Wim Leers 2009-06-02T22:11:43Z 2009-06-02T22:11:43Z <p><a href="http://drupal.org/" rel="nofollow">Drupal</a> also has its own <a href="http://drupal.org/coding-standards" rel="nofollow">coding standards</a>.</p>