vote up 5 vote down star
3

I recently started these naming conventions..

all functions & variables = camelCase

constants with define() = ALL_CAPS_AND_UNDERSCORES

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() ?

Thank you!

flag

8 Answers

vote up 7 vote down check

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.

Here are a few good examples:

And remember most important thing is being consistent in your naming conventions and coding style.

link|flag
vote up 3 vote down

The methods with two underscores at the start are usually what's called "magic" methods. This includes __toString(), __call(), __get(), and __set(). There are more, but as far as naming conventions go, all you need to know is don't use a double underscore for your own method names. The double underscore was added to avoid conflicts with user functions, so adding your own defeats the purpose. :)

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: ENT_QUOTES, ENT_NO_QUOTES

Variables and function names should be lowerCamelCase, whereas class names should be UpperCamelCase.

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 private keyword, using an underscore before your private variables/functions is optional.

link|flag
vote up 4 vote down
class TestThing
{
    public $objectProperty;

    public function methodName() {
    }
}

function function_name( $argument = null ) {
}

$variable_name = 'hi'; //Non-object
$TestThing = new TestThing; //Object
link|flag
vote up 2 vote down

The double underscore methods mentioned by nickf are called 'magic methods'. A full list can be found at http://uk3.php.net/oop5.magic

link|flag
vote up 0 vote down

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.

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:

$var_name FuncName() ClassName CONST_NAME

I also use an underscore prefix to indicate anything extraordinary about the item in question.

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.

link|flag
vote up 3 vote down

Personally, I use "unix_hacker" style for everything except for classes.

$instance = new Class()
$var_name = 5;
$x = get_x();

I used to use camel-case, but I switched so that my code would look more 'native' with PHP's built-in functions.

link|flag
vote up 1 vote down

I found this link for a PHP Coding Standard that doesn't look too bad: http://www.dagbladet.no/development/phpcodingstandard/

link|flag
vote up 1 vote down

Drupal also has its own coding standards.

link|flag
1  
This is my favorite. – Mr AJL Nov 20 at 15:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.