How can I Measure the Page Execution Time in CakePHP 2.1? In 1.3 it was rendered in the code when in debug mode.
相关问题
- How to account for clock offsets in a distributed
- How to download and run a .exe file c#
- Java Instant.parse on Date java 8
- Linux get system time since power on
- Calculate sum time in Oracle
相关文章
- Equivalent to window.setTimeout() for C++
- Get POSIX epoch as system_clock::time_point
- When does Googlebot execute javascript?
- Rails: always include the milliseconds with create
- Will getting the current date/time be thread-safe
- strtotime('today') returning incorrect tim
- Format std::time output
- What is the simplest way to find the difference be
Note that the time returned from microtime is actually in seconds not microseconds according to the docs.
You could use DebugKit Plugin to find out execution time.
Or you can edit index.php in app/ and add:
That time will be in microseconds so you could convert it to ms if you want, but DebugKit gives you a lot more information.