Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am pretty new to PHP classes and I want to follow the standard pattern?

share|improve this question
oh dear, PHP naming conventions ... ever seen the function reference ... :p – catchmeifyoutry May 21 '10 at 6:33
1  
The standard functions are a mess, that's true. But when producing new code, it's absolutely possible to stick to a consistent naming and coding style. – lnwdr May 21 '10 at 6:42
Yeah i know, i was just kidding (see :p ) It's a good question. – catchmeifyoutry May 21 '10 at 6:59
1  
Adding a question mark to a declarative sentence doesn't make it a question? – Lotus Notes May 21 '10 at 18:44

3 Answers

up vote 3 down vote accepted

The Zend guidelines are the most popular:

Zend Naming Conventions

Though really the best advice on naming conventions in any project is simply to pick one that works best for you and your team, and therefor will follow so long as it's consistent.

share|improve this answer

Another popular is the one defined here: http://drupal.org/coding-standards

share|improve this answer

It makes sense to choose a widely used coding convention that is well documented. One such example is the PEAR coding conventions (which include the PEAR naming conventions). That way you're less likely to encounter stylistic differences among yourself and your team members and you don't need to write and maintain the documentation yourself.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.