tags:

views:

231

answers:

6

I ve studied about profiler in php... Now i want to know

  • What are some good PHP profilers that can be used?
+1  A: 

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

naivists
+2  A: 

I use XDebug and WinCacheGrind to profile php.

Tommy
A: 

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
A: 

See Semantic Designs' PHP Profiler. No changes required to the PHP server are needed to use this.

Ira Baxter
Got a 404 on the link
AntonioCS
Sorry... fixed.
Ira Baxter
A: 

I'd go for xdebug.

Björn
+1  A: 

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