Reputation: 678
I want get full graph of my script using KCacheGrind, it this possible?
Upvotes: -1
Views: 1622
Reputation: 12727
Have a look at:
I would suggest using xhprof
for its better Call-Graph
and data presentation
.
Check this link there are 2 screenhots in the XHGui section: Profiling a PHP Application
Here is a screenshot of the CallGraph from the above link:
(source: erichogue.ca)
Although, XHProf does not provide full backtrace. XHProf keeps track of only one level of calling context and is therefore only able to answer questions about a function looking either one level up or down.
Upvotes: 2