Reputation: 663
I need to track the php functions run time to locate Time to First Byte problems?
Upvotes: 2
Views: 1397
Reputation: 51411
You have two major options:
Both of these will let you gather performance metrics on your script, including how much time is spent inside each native PHP function.
Upvotes: 5