I have a timestamp in milliseconds
$update
= 1448895141168
.
I'm struggling trying to convert that time into a human readable time (ago).
Example, 1 hour 3 minutes ago.
I've tried using this function in my controller
public function time_elapsed_string($ptime)
{
$etime = time() - $ptime;
if ($etime < 1)
{
return '0 seconds';
}
$a = array( 365 * 24 * 60 * 60 => 'year',
30 * 24 * 60 * 60 => 'month',
24 * 60 * 60 => 'day',
60 * 60 => 'hour',
60 => 'minute',
1 => 'second'
);
$a_plural = array( 'year' => 'years',
'month' => 'months',
'day' => 'days',
'hour' => 'hours',
'minute' => 'minutes',
'second' => 'seconds'
);
foreach ($a as $secs => $str)
{
$d = $etime / $secs;
if ($d >= 1)
{
$r = round($d);
return $r . ' ' . ($r > 1 ? $a_plural[$str] : $str) . ' ago';
}
}
}
calling it
$update = $device->last_updated_utc_in_secs;
$ptime = date($update);
dd($this->time_elapsed_string($ptime)); //"0 seconds"
I kept getting 0 second.