Answers for "how to measure time difference in laravel"

PHP
2

laravel difference between current time and created time

#1 -> 10 minutes after
$lifeSpan = $now->diffForHumans($token->created_at);
#2 -> "00:10:30 Minutes"
$lifeSpan = $now->diff($token->updated_at)->format('%H:%I:%S')." Minutes";
Posted by: Guest on August-19-2021
0

counting time execution duration in time laravel

# 1. get initial time
$start = now();

  // code here ...

# 2. get diff time from $start
$time = $start->diffInSeconds(now());

# 3. convert it in human readable
$_format = CarbonCarbonInterval::seconds($time)->cascade()->forHumans();
Posted by: Guest on September-26-2021

Browse Popular Code Answers by Language