3v4l.org

run code in 300+ PHP versions simultaneously
<?php date_default_timezone_set('Europe/Moscow'); function humanTimeAgo(int $time) { if ($time < 0) { return false; } $difference = time() - $time; if ($difference < 0) { return false; } $hours = round($difference / 3600); if ($hours < 1) { return date('i минут назад', $difference); } if ($hours < 24) { return floor($hours) . ' часов назад'; } return date('d.m.Y в H:i', $time); } echo humanTimeAgo(time() - 24*3600 - 10*60); // 1 день и 10 минут назад echo "\n"; echo humanTimeAgo(time() - 23*3600 - 20*60); // 23 часа 20 минут назад echo "\n"; echo humanTimeAgo(time() - 10*60); // 10 минут назад
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12, 7.4.0
27.04.2017 в 20:10 23 часов назад 10 минут назад

preferences:
98.59 ms | 402 KiB | 67 Q