vote up 1 vote down star

I have a group of cats that I need to herd into a development team. It's a year-long PHP project and I'd like to enforce coding styles in terms of naming conventions for variables and functions and all the rest.

These are issues that I'm familiar with in the .Net dev world but was hoping to find a cookie cutter solution for PHP.

Can anyone point me to a good resource that I could simply adopt? I've been googling but have not yet found a solid answer.

Exact Duplicate:

SO - which-coding-convention-to-follow-for-php

flag
Doh! Not enough coffee in my blood stream ... didn't think to search for "convention" – WayneDV Oct 28 '08 at 14:31

closed as exact duplicate by Daok Oct 28 '08 at 14:23

4 Answers

vote up 1 vote down

There's always the PEAR coding standards. I based my own off them, with a few modifications.

link|flag
vote up 1 vote down

The Zend PHP coding standard is quite well know in that field.
Anyway, it's the only one I remember by name.

link|flag
vote up 1 vote down

Yes, I would also recommend the PEAR coding standards, but of course, use the one that suits you and your team better.

link|flag
vote up -1 vote down
$boing; //public variable/property

$_foo; //protected variable/property

$__bar; //private variable/property

^ and same for methods, has been one approach I've seen. It made sense to me.

My preference on bracketing is for line-per-bracket (but I know this is not popular) :

if($thing)
  {
  //do thing
  if($another_thing)
    {
    //do another thing inside the thing!
    }
  }
else
  {
  //do other thing
  }

^ this can be better in a team situation as it makes blocks and bracket pairing much clearer.

Sorry if you wanted something more comprehensive.

link|flag
Use PHP5, and public/private/protected comes with it. No need to make the code less readable. – Alex Oct 28 '08 at 20:51

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