не стал заморачиваться.сделал по другому, но тоже что-то не так.вот функция
function itime2($date) {
return date("d.m.Y H:i:s", $date);
}
function itime( $date ) {
if ( !$date ) {
return null;
}
//return $date;
//$date = new \DateTime($date);
$periods = array(
array("секунда", "секунды", "секунд"),
array("минута", "минуты", "минут"),
array("час", "часа", "часов"),
array("день", "дня", "дней"),
array("неделя", "недели", "неделей"),
array("месяц", "месяца", "месяцев"),
array("год", "года", "лет"),
array("декада", "декады", "декад")
);
$lengths = array("60", "60", "24", "7", "4.35", "12", "10");
$now = time();
$unix_date = $date->getTimestamp();
// $unix_date = strtotime($date);
if ( $now > $unix_date ) {
$difference = $now - $unix_date;
$tense = 0;
} else {
$difference = $unix_date - $now;
$tense = 1;
}
for ( $j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++ ) {
$difference /= $lengths[$j];
}
$difference = round($difference);
$period = rutext($difference, $periods[$j][0], $periods[$j][1], $periods[$j][2]);
if ( !$tense ) {
return "{$difference} {$period} назад";
} else {
return "через {$difference} {$period}";
}
}
function rutext($int, $one, $two, $many) {
$int = abs($int);
$t1 = $int % 10;
$t2 = $int % 100;
return ($t1 == 1 && $t2 != 11 ? $one : ($t1 >= 2 && $t1 <= 4 && ($t2 < 10 || $t2 >= 20) ? $two : $many));
}
вывожу так
<?php if ( $track['created_at'] ): ?> Дата размещения:<br><?php echo itime($track['created_at']); ?> <?php endif ?>
Выводится: Дата размещения:
через 38 минут хотя разместил файл час назад.непойму что не так