![]() |
Here I bring a simple solution. |
Example:
PHP
<?php
// Function
function time_elapsed_string($datetime, $full = false) {
$now = new DateTime;
$ago = new DateTime($datetime);
$diff = $now->diff($ago);
$diff->w = floor($diff->d / 7);
$diff->d -= $diff->w * 7;
$string = array(
'y' => 'year',
'm' => 'month',
'w' => 'week',
'd' => 'day',
'h' => 'hour',
'i' => 'minute',
's' => 'second',
);
foreach ($string as $k => &$v) {
if ($diff->$k) {
$v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
} else {
unset($string[$k]);
}
}
if (!$full) $string = array_slice($string, 0, 1);
return $string ? implode(', ', $string) . ' ago' : 'just now';
}
?>
<?php
// Time
$date = '2023-08-19 07:11:31';
// Ago Code Final
echo time_elapsed_string($date);
?>
How to convert a timestamp to Minute Ago in PHP | PHP Time Tutorial |
How to create PHP Date formatting | PHP Time Tutorial |
Time AGo PHP Function And Full Solution | PHP Time Tutorial |
Read Full: | PHP Time Tutorial |
Category: | Web Tutorial |
Sub Category: | PHP Time Tutorial |
Uploaded: | 1 year ago |
Uploaded by: | Admin |
Views: | 96 |
Tested on: | PHP 7 |