Answers for "how check the time of operation in laravel"

PHP
0

how check the time of operation in laravel

$timeStart = microtime(true);

App::finish(function() use ($timeStart) {
    $diff = microtime(true) - $timeStart;
    $sec = intval($diff);
    $micro = $diff - $sec;
    Log::debug(Request::getMethod() . "[" . Request::url() . "] Time: " . round($micro * 1000, 4) . " ms");
});
Posted by: Guest on August-02-2021

Code answers related to "how check the time of operation in laravel"

Browse Popular Code Answers by Language