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 any code coverage tool available for PHP? I wish to check the code coverage of my code and API's written in PHP, but have not been able to lay my hands on any code coverage tool for PHP, as it is more of a server side language and dynamic in nature.

Does anyone know of a method by which code coverage for PHP can be executed?

share|improve this question

closed as not constructive by casperOne Sep 12 '12 at 12:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

up vote 16 down vote accepted

xdebug has Code Coverage Analysis.

Check this chapter of the PHPUnit Manual

share|improve this answer

See our PHP Test Coverage tool from Semantic Designs:

http://www.semanticdesigns.com/Products/TestCoverage/PHPTestCoverage.html

Very low overhead, handles huge systems of files, intuitive GUI showing coverage on specific files, and generated report with coverage breakdown at method, class and package levels.

Best of all, no requirement to install anything in the system being tested. No need for xdebug, etc., which means you don't have to argue with the sysadmin to do your testing.

You can use it with PHPUnit to get unit-test driven coverage. Or you can use it on your website to collect coverage from any functional testing approach/tools you may have.

share|improve this answer
Downvoter (flagger): Your specific objection to this answer? – Ira Baxter Jul 12 '11 at 21:27
+1 to counter-balance the -1, seeing that this is NOT spam, since it is clearly stated as promotional, and actually gives a relevant answer. – SirDarius Aug 11 '11 at 14:11
Windows only, FYI – Montana Harkin Mar 20 '12 at 14:29
This product uses a Windows-based tool to instrument the application source code. The instrumented code can run anywhere there's a PHP interpreter, e.g., your hosted web site. The results report generation and display is done by a Java program. – Ira Baxter May 10 '12 at 5:18
... it is worth reporting that it operates under Linux using Wine quite effectively. – Ira Baxter Sep 3 '12 at 13:48
show 2 more comments

Using Xdebug in combination with PHPUnit can give you code coverage analysis.

share|improve this answer

Phing can do code coverage reporting with xdebug (http://devzone.zend.com/article/2955).

share|improve this answer
Phing. is. love. – analytik Jul 15 '10 at 8:35
3  
what does Phing have to do with code coverage? It's a build tool for launching many other tools. – Radek Simko Aug 29 '12 at 8:31

Spike PHPCoverage. Both SimpleTest and PHPUnit can easily be integrated with it, although PHPUnits support is there out-of-the-box.

share|improve this answer
Isn't spike simply a wrapper around xDebug? – andrewdotnich Feb 15 '10 at 5:17
yes, it uses xdebug. – troelskn Feb 15 '10 at 8:18

Zend Studio ships with code coverage tools out the box.

share|improve this answer

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