Convert seconds to Hour:Minute:Second

前端 未结 27 2450
说谎
说谎 2020-11-22 07:56

I need to convert seconds to \"Hour:Minute:Second\".

For example: \"685\" converted to \"00:11:25\"

How can I achieve this?

27条回答
  •  执念已碎
    2020-11-22 08:30

    gmdate("H:i:s", no_of_seconds);
    

    Will not give time in H:i:s format if no_of_seconds is greater than 1 day (seconds in a day).
    It will neglect day value and give only Hour:Min:Seconds

    For example:

    gmdate("H:i:s", 89922); // returns 0:58:42 not (1 Day 0:58:42) or 24:58:42
    

提交回复
热议问题