Possible Duplicates:
Regexp to detect call time pass by references in PHP source code
Is there a static code analyzer [like Lint] for PHP files?

Is there any tool that can do static analysis of PHP code? I should be able to specify rules (for example, "don't allow underscores in class names" etc) and the tool should tell me where the rules are not obeyed. It should also do the usual checks like dead code etc

link|improve this question

67% accept rate
possible duplicate of Regexp to detect call time pass by references in PHP source code - Accepted Answer solves your problem, e.g. use CodeSniffer. – Gordon Nov 11 '10 at 15:39
1  
Duplicate of stackoverflow.com/questions/378959/… – Ryan Tenney Nov 11 '10 at 15:40
(tipp) phpqatools.org – Gordon Nov 11 '10 at 15:41
feedback

closed as exact duplicate by Gordon, ircmaxell, markus-tharkun, Wooble, Graviton Nov 13 '10 at 2:45

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Look at:

PHP Code Sniffer

PHP AST

PHP Sat

PHP Depend

PHP Lint

PHP Call Graph

xDebug

source

link|improve this answer
IMO should be a CW since you only collected the tools given in the question this question is closevoted for. – Gordon Nov 11 '10 at 16:19
feedback

Try PEAR's PHP CodeSniffer. You can specify your coding standard and ensure all code comlplies.

link|improve this answer
Redundant answer given that piddl0r basically said the same. Also, with the question being a duplicate, you could closevote (if you didnt already). – Gordon Nov 11 '10 at 16:22
feedback

There are a few around but I've been using PHP_CodeSniffer

link|improve this answer
yes, that's the solution given in the links this question was identified to be a duplicate of 2 and 3 minutes earlier. – Gordon Nov 11 '10 at 16:24
feedback

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