What are some good PHP profilers that can be used? [closed]PHP display line-to-line execution timeSQL Server PerformanceMeasure websiteperformance issue in website based on LAMP architectureWhat Are Some Good .NET Profilers?How can I prevent SQL injection in PHP?PHP and EnumerationsPHP: Delete an element from an arrayConvert HTML + CSS to PDF with PHP?Secure hash and salt for PHP passwordsHow to get the client IP address in PHPReference — What does this symbol mean in PHP?How do you use bcrypt for hashing passwords in PHP?How does PHP 'foreach' actually work?
Doomsday-clock for my fantasy planet
Re-submission of rejected manuscript without informing co-authors
Landlord wants to switch my lease to a "Land contract" to "get back at the city"
What is the command to reset a PC without deleting any files
Is Fable (1996) connected in any way to the Fable franchise from Lionhead Studios?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
Does it makes sense to buy a new cycle to learn riding?
Is "plugging out" electronic devices an American expression?
How to move the player while also allowing forces to affect it
What happens when a metallic dragon and a chromatic dragon mate?
Why do we use polarized capacitors?
What does "enim et" mean?
"My colleague's body is amazing"
How do I create uniquely male characters?
Decoupling User Stories in Agile Development
Why doesn't a const reference extend the life of a temporary object passed via a function?
Was there ever an axiom rendered a theorem?
extract characters between two commas?
Check if two datetimes are between two others
Piano - What is the notation for a double stop where both notes in the double stop are different lengths?
Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?
Why airport relocation isn't done gradually?
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Is this food a bread or a loaf?
What are some good PHP profilers that can be used? [closed]
PHP display line-to-line execution timeSQL Server PerformanceMeasure websiteperformance issue in website based on LAMP architectureWhat Are Some Good .NET Profilers?How can I prevent SQL injection in PHP?PHP and EnumerationsPHP: Delete an element from an arrayConvert HTML + CSS to PDF with PHP?Secure hash and salt for PHP passwordsHow to get the client IP address in PHPReference — What does this symbol mean in PHP?How do you use bcrypt for hashing passwords in PHP?How does PHP 'foreach' actually work?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I've studied about profilers in PHP... Now I want to know:
What are some good PHP profilers that can be used?
php profiler
closed as off-topic by Rob♦ Mar 22 at 2:15
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Rob
add a comment |
I've studied about profilers in PHP... Now I want to know:
What are some good PHP profilers that can be used?
php profiler
closed as off-topic by Rob♦ Mar 22 at 2:15
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Rob
add a comment |
I've studied about profilers in PHP... Now I want to know:
What are some good PHP profilers that can be used?
php profiler
I've studied about profilers in PHP... Now I want to know:
What are some good PHP profilers that can be used?
php profiler
php profiler
edited Apr 18 '13 at 7:36
professorsloth
1498
1498
asked Jan 27 '10 at 8:24
user213559
closed as off-topic by Rob♦ Mar 22 at 2:15
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Rob
closed as off-topic by Rob♦ Mar 22 at 2:15
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Rob
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
I use XDebug and WinCacheGrind to profile php.
add a comment |
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.
- http://pecl.php.net/package/xhprof
- http://xdebug.org/
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.
- http://particletree.com/features/php-quick-profiler/
add a comment |
XDebug? http://www.google.com/search?q=php+profiler
add a comment |
See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
add a comment |
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.
add a comment |
I'd go for xdebug.
add a comment |
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
I use XDebug and WinCacheGrind to profile php.
add a comment |
I use XDebug and WinCacheGrind to profile php.
add a comment |
I use XDebug and WinCacheGrind to profile php.
I use XDebug and WinCacheGrind to profile php.
answered Jan 27 '10 at 8:27
TommyTommy
1,40211629
1,40211629
add a comment |
add a comment |
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.
- http://pecl.php.net/package/xhprof
- http://xdebug.org/
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.
- http://particletree.com/features/php-quick-profiler/
add a comment |
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.
- http://pecl.php.net/package/xhprof
- http://xdebug.org/
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.
- http://particletree.com/features/php-quick-profiler/
add a comment |
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.
- http://pecl.php.net/package/xhprof
- http://xdebug.org/
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.
- http://particletree.com/features/php-quick-profiler/
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.
- http://pecl.php.net/package/xhprof
- http://xdebug.org/
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.
- http://particletree.com/features/php-quick-profiler/
answered Jan 27 '10 at 8:31
sfrenchsfrench
91259
91259
add a comment |
add a comment |
XDebug? http://www.google.com/search?q=php+profiler
add a comment |
XDebug? http://www.google.com/search?q=php+profiler
add a comment |
XDebug? http://www.google.com/search?q=php+profiler
XDebug? http://www.google.com/search?q=php+profiler
answered Jan 27 '10 at 8:27
naivistsnaivists
26.5k54778
26.5k54778
add a comment |
add a comment |
See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
add a comment |
See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
add a comment |
See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.
See my company's (Semantic Designs) PHP Profiler. No changes required to the PHP server are needed to use this.
edited May 15 '11 at 21:45
answered Jan 27 '10 at 8:30
Ira BaxterIra Baxter
81.1k10134270
81.1k10134270
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
add a comment |
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Got a 404 on the link
– AntonioCS
Jan 27 '10 at 10:03
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
Sorry... fixed.
– Ira Baxter
Jan 27 '10 at 19:39
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
So, it's not free (as most other cool tools of SD ;) ), I assume?
– mlvljr
May 15 '11 at 20:15
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
It is a commercial product. I believe none of the others provide a call graph or timing on call subtrees.
– Ira Baxter
May 15 '11 at 21:47
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 27 '10 at 8:28
RJD22RJD22
9,32532232
9,32532232
add a comment |
add a comment |
I'd go for xdebug.
add a comment |
I'd go for xdebug.
add a comment |
I'd go for xdebug.
I'd go for xdebug.
answered Jan 27 '10 at 8:30
BjoernBjoern
13.4k33445
13.4k33445
add a comment |
add a comment |