How can I convert PHP Code Sniffer XML report into

2019-02-14 23:54发布

Can you suggest some method of converting PHP Code Sniffer XML report into HTML page(s). I guess I might need some XSLT translation… Thanks in advance for the advice.

标签: php sniffer
3条回答
别忘想泡老子
2楼-- · 2019-02-15 00:19

XSLT is quite cumbersome to write, very few people I know can do it well; you can instead parse the XML in a PHP script and spit out HTML.

CodeSniffer can also output its report as a CSV file - if that's easier for you to parse, use that instead.

查看更多
劳资没心,怎么记你
3楼-- · 2019-02-15 00:20

Few days ago I posted XSLT stylesheet on my blog: http://phpdojo.blogspot.com/2010/12/converting-phpcodesniffer-xml-report.html including new type of report: xsl.

查看更多
Rolldiameter
4楼-- · 2019-02-15 00:27

Just to add: If you run phpcs through Jenkins, then you can output the report in 'checkstyle' format.

phpcs --report=checkstyle --report-file=/phpcs/out.xml

Then configure your Jenkins job to parse the output using that file.

Here's the plugin:

https://wiki.jenkins-ci.org/display/JENKINS/Checkstyle+Plugin

Here's some output samples:

enter image description here enter image description here

查看更多
登录 后发表回答