Андрей «Rarst» Савченко, WordPress Kitchen Conference 2015
Нет.
printf(
'%d queries in %.3f seconds, using %.2fMB memory',
get_num_queries(),
timer_stop( 0, 3 ),
memory_get_peak_usage() / 1024 / 1024
);
// 3 queries in 0.251 seconds, using 4.42MB memory
$stopwatch = new Stopwatch();
$stopwatch->start( 'eventName' );
// some code goes here
$event = $stopwatch->stop( 'eventName' );
echo $event->getDuration(); // 202
echo $event->getMemory(); // 3670016
symfony.com/doc/current/components/stopwatch
Полностью в браузере.