- Регистрация
- 17 Июн 2011
- Сообщения
- 20
- Реакции
- 1
- Автор темы
- Заблокирован
- #1
Нужно сделать так, чтобы показывало сколько минут(часов) назад добавлена запись, такое есть у спрашивай.ру, контакта, твиттера, помогите реализовать. спасибо.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
$time = "2011-10-13 22:20:00";
$stime=strtotime($time);
$rtime=(time()-$stime);
if($rtime<3600){
$min=floor($rtime/60);
$end_time="Прошло минут: ".$min;}
elseif($rtime>=3600){
$hor=floor($rtime/3600);
$min=floor(($rtime-($hor*3600))/60);
$end_time="Прошло часов: ".$hor.", минут: ".$min;}
echo $end_time;
?>
$timestamp = strtotime($question_rows['timestamp']);
$time = date('Y-m-d H:i:s',$timestamp);
$stime=strtotime($time);
$rtime=(time()-$stime);
if($rtime<3600){
$min=floor($rtime/60);
$newtimestamp=declension($min,'минуту минуты минут');}
elseif($rtime>=3600){
$hor=floor($rtime/3600);
$min=floor(($rtime-($hor*3600))/60);
$newtimestamp=declension($hor,'час часа часов');}