Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
$seconds = 88774;
$d = floor($seconds / 86400); $seconds -= $d * 86400;
$h = floor($seconds / 3600); $seconds -= $h * 3600;
$i = floor($seconds / 60); $seconds -= $i * 60;
$s = $seconds;
printf("%s days, %s hours, %s minutes, %s seconds\n", $d, $h, $i, $s);