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

Is there a static code analyzer for PHP files? The binary itself can check for syntax errors, but I'm looking for something that does more, like unused variable assignments, arrays that are assigned into without being initialized first, and possibly code style warnings. Open-source programs would be preferred, but we might convince the company to pay for something if it's highly recommended.

share|improve this question

11 Answers

up vote 146 down vote accepted

For static analysis, there are php-sat, php-ast, PHP_Depend and PHP_CodeSniffer, that I know of. These are fairly high level tools; You can also dabble in stuff like PHP_Parser or the more primitive token_get_all function. Finally, you can also run php in lint-mode (php -l FILENAME), from the command line. It will check the file for valid syntax (eg. parse it), but won't execute it.

There are also some runtime analysis options, which are more useful for some things, because of PHPs dynamic nature. Xdebug has a few nifty features, such as code coverage and function traces. Just recently, I put a small tool together, using a combined static/dynamic approach, which builds on xdebugs function traces.

And of course, there are phpdoc and doxygen, which both perform a kind of code analysis (Doxygen can be configured to render nice inheritance graphs with graphviz)

A recent newcomer is xhprof, which can do much of the same things as xdebug, but the extension is more lightweight, making it better suitable for running on a production server, and it includes a nice php-based interface.

share|improve this answer
1  
PHP_CodeSniffer looked very nice to me at the start, but I couldn't for the life of me make it NOT show indentations "errors". It seems it ignores the --error-severity option entirely. – dimitko Aug 24 '11 at 10:51
5  
+1 for taking 6 hours of my life in trying all these goodies! – Abe Petrillo Feb 13 '12 at 18:48
3  
@dimitko: That's because php -l can only read one input file at a time (that is, it won't work if you do php -l file1.php file2.php). Instead you need to use the -n 1 option, which tells xargs to only use one input line per command process. That will instead cause it to run php -l file1.php followed by php -l file2.php, separately. At the same time, you can use -P <n> to run "n" processes at a time, in order to parallelize the execution: find . -name '*.inc' -o -name '*.php' -print0 | xargs -0 -n1 -P10 php -l – Joe Apr 5 '12 at 22:07
1  
@ira I did preface their mention by calling them "runtime analysis options", but perhaps I should have been more explicit? – troelskn May 9 '12 at 8:10
4  
find /your/path -name '*.php' -exec php -l {} \; works reliable. – Koen. Aug 8 '12 at 13:11
show 4 more comments

Online PHP lint

PHPLint

Unitialized variables check. Link 1 and 2 already seem to do this just fine, though.

I can't say I have used any of these intensively, though :)

share|improve this answer

For completeness -- also check phpCallGraph.

share|improve this answer
Thanks - Didn't know about that one. – troelskn Dec 19 '08 at 17:20

PHP Mess Detector is awesome and fast.

http://phpmd.org/

share|improve this answer
2  
Thank you! I was looking for an awesome. In fact, I refuse to use anything but awesome tools. :) – Prof. Falken Mar 20 '12 at 14:00
bump! phpmd is really good. – rjha94 Jun 8 '12 at 4:00

See Semantic Designs' CloneDR, a "clone detection" tool that finds copy/paste/edited code. It will find exact and near miss code fragments, in spite of whitespace, comments and even variable renamings. A sample detection report for PHP can be found at the wesite. (I'm the author).

share|improve this answer
2  
+1 for "I'm the author" – Flavius Mar 18 '11 at 16:57
1  
Looking at the site, that seems like an incredible tool. I will be taking a closer look later! Thanks for the link (+1 for "I'm the author" as well) – Eric Cope Oct 29 '11 at 17:53
The bane of any conniving undergrad. – wom Mar 15 '12 at 18:55

There a new tool called nWire for PHP. It is a code exploration plugin for Eclipse PDT and Zend Studio 7.x. It enables real-time code analysis for PHP and provides the following tools:

  • Code visualization - interactive graphical representation of components and associations.
  • Code navigation - unique navigation view shows all the associations and works with you while you write or read code.
  • Quick search - search as you type for methods, fields, file, etc.
share|improve this answer
1  
its not answer for question. like answer exist netbeans etc.. – Yosef Apr 22 '11 at 12:25

The NetBeans IDE checks for syntax errors, unusued variables and such. It's not automated, but works fine for small or medium projects.

share|improve this answer

I have tried using $php -l and couple other tools. However the best one in my experience (YMMV, of course) is scheck of pfff toolset. I heard about pfff on Quora (http://www.quora.com/Is-there-a-good-PHP-lint-static-analysis-tool)

You can compile and install it. There are no nice packages (on my mint Debian, I had to install libpcre3-dev, ocaml, libcairo-dev, libgtk-3-dev and libgimp2.0-dev dependencies first) but it should be worth an intsall.

The results are reported like

rjha@mint ~ $ ~/sw/pfff/scheck ~/code/github/sc/
login-now.php:7:4: CHECK: Unused Local variable $title
go-automatic.php:14:77: CHECK: Use of undeclared variable $goUrl.
share|improve this answer
Thank you. It keeps complaining about our dynamic imports, but its other capabilities look good so far. I also needed to install binutils-gold, and scheck needed to be installed in a custom path, but it seems to work now. – eswald Jun 7 '12 at 23:22
@eswald Now a days I am a php mess detector (phpmd) convert. Of all the tools I have tried so far (php code sniffer, scheck, php -l, phpmd), IMHO, phpmd works best for my case. – rjha94 Jun 8 '12 at 3:58
Do you know where to find Scheck? – George Katsanos yesterday
1  
@GeorgeKatsanos scheck is part of pfff toolset. github.com/facebook/pfff – rjha94 5 hours ago

PHP PMD (project mess detector) and PHP CPD (copy paste detector) as the former part of PHPUnit

share|improve this answer

Also, PHP Compiler maybe worth a try. Its main function is to produce PHP binaries but it does have some analysis capabilities.

share|improve this answer

There is absolutely new tool for static code analysis called PHP Analyzer.

Among many types of static analysis it also provides basic auto-fixing functionality, see documentation.

share|improve this answer

Your Answer

 
discard

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

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