How to convert minutes to hours and minutes (without days)

Tikky

I would like to display time in minues as an hour and minutes.

Example 1: I want to display 125 minutes as a 2:05

I know I can to somethink like:

$minutes=125;
$converted_time = date('H:i', mktime(0,$minutes);

This works fine, but if the time is more then 24h it is a problem.

Example 2:

$minutes=1510;

and I want to receive 25:10 (without days), only hours and minutes.

How to do that?

Marcin Nabiałek

You can use:

$minutes=1510;

$hours = intdiv($minutes, 60).':'. ($minutes % 60);

!!! This only works with php >= v7.xx

Previous answer:

$minutes=1510;

$hours = floor($minutes / 60).':'.($minutes -   floor($minutes / 60) * 60);

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to get difference between 2 dates in number of days,hours,minutes and seconds

분류에서Dev

How moment.js works with declination minutes and hours?

분류에서Dev

Seconds, minutes and hours since a date

분류에서Dev

Days : Minutes : Hours 형식의 DateTime 차이를 얻는 방법

분류에서Dev

How to close an HttpUrlConnection after 5 minutes without getting an exception in Java?

분류에서Dev

pandas series use truncate get specified hours, minutes and seconds?

분류에서Dev

Only display hours if time is greater than 60 minutes

분류에서Dev

How to add timestamp to Minutes in php

분류에서Dev

converting seconds to minutes but without changing the format

분류에서Dev

How can I format minutes into hour and minutes but only show hour if it's > 60 minutes?

분류에서Dev

How to output time remaining in days or hours with liquid?

분류에서Dev

VBA - Access 2010 - Can't display total minutes in DD:HH:MM format if over 2 days

분류에서Dev

Cronjob every 24 minutes

분류에서Dev

There is an additional 8 minutes time

분류에서Dev

Calculating days from TimeSpan hours

분류에서Dev

Ubuntu takes 7 minutes to boot

분류에서Dev

Time () By 5 Minutes 선택

분류에서Dev

restart program every x minutes?

분류에서Dev

uninitialized constant and remove minutes selector

분류에서Dev

Cron job at specific interval of minutes

분류에서Dev

How do I shut down a Linux server after running for 60 minutes?

분류에서Dev

iOS app: Authentication with server timing out after 20 minutes. Is this normal, and how can I handle it?

분류에서Dev

How can I display a random image on a web-page for 2 minutes, then change images?

분류에서Dev

How can I see which process hangs my Banana-pi for few seconds every couple of minutes?

분류에서Dev

How do I convert a timespan into years, months and days in sql

분류에서Dev

Boot time over 20 minutes on a virtual server

분류에서Dev

Find a file which is 30 minutes old

분류에서Dev

JQuery TimeCircles - display minutes and seconds in one circle

분류에서Dev

Issue with time cell - adding 24 minutes

Related 관련 기사

  1. 1

    How to get difference between 2 dates in number of days,hours,minutes and seconds

  2. 2

    How moment.js works with declination minutes and hours?

  3. 3

    Seconds, minutes and hours since a date

  4. 4

    Days : Minutes : Hours 형식의 DateTime 차이를 얻는 방법

  5. 5

    How to close an HttpUrlConnection after 5 minutes without getting an exception in Java?

  6. 6

    pandas series use truncate get specified hours, minutes and seconds?

  7. 7

    Only display hours if time is greater than 60 minutes

  8. 8

    How to add timestamp to Minutes in php

  9. 9

    converting seconds to minutes but without changing the format

  10. 10

    How can I format minutes into hour and minutes but only show hour if it's > 60 minutes?

  11. 11

    How to output time remaining in days or hours with liquid?

  12. 12

    VBA - Access 2010 - Can't display total minutes in DD:HH:MM format if over 2 days

  13. 13

    Cronjob every 24 minutes

  14. 14

    There is an additional 8 minutes time

  15. 15

    Calculating days from TimeSpan hours

  16. 16

    Ubuntu takes 7 minutes to boot

  17. 17

    Time () By 5 Minutes 선택

  18. 18

    restart program every x minutes?

  19. 19

    uninitialized constant and remove minutes selector

  20. 20

    Cron job at specific interval of minutes

  21. 21

    How do I shut down a Linux server after running for 60 minutes?

  22. 22

    iOS app: Authentication with server timing out after 20 minutes. Is this normal, and how can I handle it?

  23. 23

    How can I display a random image on a web-page for 2 minutes, then change images?

  24. 24

    How can I see which process hangs my Banana-pi for few seconds every couple of minutes?

  25. 25

    How do I convert a timespan into years, months and days in sql

  26. 26

    Boot time over 20 minutes on a virtual server

  27. 27

    Find a file which is 30 minutes old

  28. 28

    JQuery TimeCircles - display minutes and seconds in one circle

  29. 29

    Issue with time cell - adding 24 minutes

뜨겁다태그

보관