dole doug
dole doug

Reputation: 36048

php tools to detect bottle neck

I'm developing a web-application with PHP and some libraries. The problem is that i need to generate some excel files, and this procedure takes a lot of time. Can you help me with some tools to identify where my application spends a lot of time,. Can you recommend a php tool which will help me to detect the bottle necks?

ps: the lib that I use for generating the excel files is PHPExcel.

Upvotes: 2

Views: 158

Answers (2)

Ira Baxter
Ira Baxter

Reputation: 95354

See our SD PHP Profiler. This will show you graphically where your code spends most of its time.

Upvotes: 0

Gordon
Gordon

Reputation: 316969

Xdebug or Zend Debugger

They allow you to profile your application and will generate comprehensive lists about which functions have been called and how long they took to execute. XDebug is free. Zend Debugger requires Zend Studio or Eclipse.

Upvotes: 1

Related Questions