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.
|
|
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. 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 debugs 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) |
|||
|
|
|
|
For completeness -- also check phpCallGraph. |
||
|
|
|
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 :) |
||
|
|
