Abdullah R. answered 01/18/26
Tutor
5
(1)
PHP Full Stack E-Commerce Web Developer
The easiest way to convert seconds to date format is to use date function or gmdate function
$seconds = 685;
$time = date("H:i:s", $seconds);
echo $time;
However, its not the most accurate