PHP best practices for naming conventions - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T08:30:52Zhttp://stackoverflow.com/feeds/question/332831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332831/php-best-practices-for-naming-conventions5PHP best practices for naming conventionsalex2008-12-02T02:12:39Z2009-06-02T22:11:43Z
<p>I recently started these naming conventions..</p>
<p>all functions & 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#3328473Answer by nickf for PHP best practices for naming conventionsnickf2008-12-02T02:24:17Z2008-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#3328534Answer by orlandu63 for PHP best practices for naming conventionsorlandu632008-12-02T02:28:16Z2008-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#3328547Answer by CMS for PHP best practices for naming conventionsCMS2008-12-02T02:30:09Z2008-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#3339002Answer by Rob Young for PHP best practices for naming conventionsRob Young2008-12-02T13:23:36Z2008-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#3728950Answer by Adam for PHP best practices for naming conventionsAdam2008-12-16T21:51:49Z2008-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#3729213Answer by Logan Serman for PHP best practices for naming conventionsLogan Serman2008-12-16T22:03:03Z2008-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#9420971Answer by RFelix for PHP best practices for naming conventionsRFelix2009-06-02T21:54:20Z2009-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#9421521Answer by Wim Leers for PHP best practices for naming conventionsWim Leers2009-06-02T22:11:43Z2009-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>