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.
You could use DebugKit Plugin to find out execution time.
Or you can edit index.php in app/ and add:
// top of file
$starTime = microtime(true);
// bottom of file
echo '<!-- Exec time: ', microtime(true) - $startTime, ' -->';
That time will be in microseconds so you could convert it to ms if you want, but DebugKit gives you a lot more information.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With