7

I've studied about profilers in PHP... Now I want to know:

What are some good PHP profilers that can be used?

professorsloth
  • 339
  • 1
  • 10

6 Answers6

7

Low level profilers - These are modules which are loaded into the php executable, and therefore are a bit harder to setup, but they provide solid results.

PQP is a code-based profiler. While probably not as accurate as the low-level profilers mentioned above, it may be all you need if you are looking for some simple metrics.

sfrench
  • 910
  • 5
  • 9
4

I use XDebug and WinCacheGrind to profile php.

Tommy
  • 1,960
  • 1
  • 19
  • 32
1

XDebug? http://www.google.com/search?q=php+profiler

naivists
  • 32,681
  • 5
  • 61
  • 85
1

See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341
0

One you can use is xdebug. Also something nice to note is that if you use frameworks. The framework kohana has a build in profiler that even measures your queries.

RJD22
  • 10,230
  • 3
  • 28
  • 35
0

I'd go for xdebug.

Bjoern
  • 15,934
  • 4
  • 43
  • 48