vote up 7 vote down star
4

I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices.

In perl, I try to follow the guidelines in the popular book "Perl Best Practices" and I use the perlcritic module to enforce the policies recommended in that book. Perlcritic checks my code to ensure that each recommended policy is followed. I have perlcritic set to "brutal" because I'm serious about creating bug-free code.

With javascript, I use JSLint to do the same thing, as well as enabling strict error checking in firefox.

Unfortunately, I haven't found anything like that for PHP! I've never found a best practices list for PHP with more than 20 items on it, and certainly haven't found a syntax checker that would enforce such rules.

( by the way, I know about php's error_reporting setting. i want something in addition to that ).

Is there such a program to enforce strict best practices in php?

flag

5 Answers

vote up 4 vote down check

I would recommend PHP CodeSniffer for static code analysis...

link|flag
Ironically, that link leads to a 404. – Matthew Scharley Oct 8 at 13:01
1  
For some reason, the link only returns a 404 when clicking. Reloading afterwards does make the page display. Odd. – Duroth Oct 8 at 13:07
(replace Reloading with 'setting focus on the address bar and pressing enter') – Duroth Oct 8 at 13:08
What an odd glitch... – ceejayoz Oct 8 at 13:54
vote up 0 vote down

Have you looked at :

http://www.icosaedro.it/phplint/phplint-on-line.html

link|flag
vote up 2 vote down

PEAR coding standards

link|flag
2  
also nice: framework.zend.com/manual/en/… – Jochen Hilgers Oct 8 at 13:40
PEAR standars && Zend standards are practically the same : Zend Framework standards are more explicit – mere-teresa Oct 8 at 14:52
vote up 0 vote down

PHP Codesniffer is indeed the best tool there is right now. The distribution contains a few different rulesets, and you can also create your own.

In addition to running it locally, you can also integrate PHP Codesniffer reports into your CI tool. For phpUnderControl its quite easy, no idea about Hudson or others.

link|flag
vote up 0 vote down

You will find almost all tools about quality of code in PHP on this page : http://phptothemoon.com/en/content/tools-quality-php

Take a look on continuous integration tools, as it can measure the quality of your code.

link|flag

Your Answer

Get an OpenID
or

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