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 free profiling tool with which I can measure the performance of HTML, PHP and JavaScript code independently?

share|improve this question

3 Answers

up vote 5 down vote accepted

For the performance of PHP I use Xdebug with cachegrind turned on. For HTML and Javascript I like to use firebug / yslow.

share|improve this answer

For html/javascript try:

http://developer.yahoo.com/yslow/

this link has 2 tools. Firebug (profile your javascript). and YSlow testing page load times and gives you suggestions on how to fix it.

share|improve this answer

If your php pages are using a database, your queries will almost certainly be the most expensive part of any request. And that gets worse with time as your dataset grows.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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