I recently started these naming conventions...
all functions & variables = camelCase
constants with define() = ALL_CAPS_AND_UNDERSCORES
Is there an official naming convention for PHP?
|
I recently started these naming conventions... all functions & variables = constants with Is there an official naming convention for PHP?
| |||||
feedback
|
|
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. | |||||||||||
feedback
|
|
Personally, I use "unix_hacker" style for everything except for classes.
I used to use camel-case, but I switched so that my code would look more 'native' with PHP's built-in functions. | |||||||||||||
feedback
|
| |||
|
feedback
|
|
The methods with two underscores at the start are usually what's called "magic" methods. This includes 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: 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 | |||
|
feedback
|
|
I just wanted to throw my $0.02USD in here as well... I've used many coding standards and systems over the years. I've recently jettisoned my Hungarian notation naming from my PHP projects. It was tough, but I like the results. So, here's my thing. Class names that are not part of an immediate project (i.e. library-ish stuff), start with "C". Example: CMyClass or CNewComponent. Variable names that are NOT arguments, begin with "$_" to denote their locality. Member names all begin with the same "$_" signature. All variable and member names are descriptive and camel-cased. All class members are PROTECTED by default and getter/setter methods are added as needed. All non-public class members, static or otherwise, begin with an underscore. I always use tabs, 4 characters wide. Use PHPDOC on every method in your classes. Here's a snippet:
| |||
|
feedback
|
|
The double underscore methods mentioned by nickf are called 'magic methods'. A full list can be found at http://uk3.php.net/oop5.magic | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
I found this link for a PHP Coding Standard that doesn't look too bad: http://www.dagbladet.no/development/phpcodingstandard/ | |||
|
feedback
|
|
Drupal also has its own coding standards. | |||||||||||||
feedback
|
|
Quiet old thread but I'll give my comment if someone else finds this through searchmachines like me. I prefer a slightly different convention than Adam: $var_name funcName() ClassName CONST_NAME The difference to Adam: I start function names lower case. Basically I don't like lower case, underscored variable names. But there is a major drawback about camelCased variable names in PHP: Variable names in PHP are case sensitive and don't need to be declared. So a simple typo like $foobar instead of $fooBar can drive you crazy when debugging. There's no compiler who tells you that $foobar isn't initialized. There are IDEs like Zend Studio who shout out a warning if you read a variable which is maybe not initialized, but what if you can't use Zend Studio for some reason on a file or a single script? Typos like the foobar-example happen quite often if you type fast and don't hit the shift key long enough. Simply use lower case variable names makes them difficult to read if they are long. So i think lowercase, underscored variable names are the best choice in PHP. | |||
|
feedback
|
|
The most relevant page from the question linked to by @CMS is: Naming Conventions - from the Zend Framework Zend write PHP, and therefore probably get to decide what the standard conventions are. Which are what most PHP coders tend to adopt. Essentially, if you have a class hierarchy, then files should be placed within a directory structure matching that hierarchy, with the file named the same as the class. Class names should be alphanumeric only, with numbers discouraged and underscores used to separate the components of the class hierarchy. So a class could be called Abstract classes and Interfaces tend to be suffixed with Non-Class files can be named arbitrarily, but only with alphanumeric characters, a dash and the underscore - hopefully with a name pertinent to purpose. | |||
|
feedback
|
|
Here are other coding standards:
But it as it's written in the Symfony2-documentaiton:
| |||
|
feedback
|