Search code examples
phpcode-analysisstatic-analysis

How can I perform static code analysis in PHP?


Is there a static analysis tool for PHP source 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
  • ...

Solution

  • Run php in lint mode from the command line to validate syntax without execution:

    php -l FILENAME

    Higher-level static analyzers include:

    Lower-level analyzers include:

    Runtime analyzers, which are more useful for some things due to PHP's dynamic nature, include:

    The documentation libraries phpdoc and Doxygen perform a kind of code analysis. Doxygen, for example, can be configured to render nice inheritance graphs with Graphviz.

    Another option is xhprof, which is similar to Xdebug, but lighter, making it suitable for production servers. The tool includes a PHP-based interface.