Critiquing PHP-code / PerlCritic for PHP?

2019-04-11 01:25发布

I'm looking for an equivalent of PerlCritic for PHP. PerlCritc is a static source code analyzer that qritiques code and warns about everything from unused variables, to unsafe ways to handle data to almost anything.

Is there such a thing for PHP that could (preferably) be run outside of an IDE, so that source code analysis could be automated?

2条回答
淡お忘
2楼-- · 2019-04-11 01:44

Not sure I've ever heard about a PHP tool that would do all that... But a couple of existing QA-related tools, that might help you at least a bit, would be :

Those two will analyse your code, and can be run from the command-line (i.e. outside of an IDE).

查看更多
再贱就再见
3楼-- · 2019-04-11 01:50

See SD PHP CloneDR for a static analysis tool that finds duplicated code (exact and near misses) across large bodies of PHP code.

There are examples of a PHP clone detection run on the Joomla OSS web framework at the site.

查看更多
登录 后发表回答