Difference between 24:00 and 00:00?

后端 未结 7 2198
青春惊慌失措
青春惊慌失措 2021-01-06 09:57

What is the difference between 24:00 clock and 00:00 clock. IMO 24:00 clock is the day before and 00:00 clock is the beginning of the new day. But I\'m not really convinced

7条回答
  •  日久生厌
    2021-01-06 10:18

    After 23:59 comes 0:00, not 24:00 Please see the code below, in php, as you put the 'php' tag:

    echo date('G:i:s', mktime(0,0,0)) . "\n" ;
    echo date('G:i:s', mktime(0,0,0)-1) . "\n" ;
    

    It will display:

    0:00:00
    23:59:59
    

提交回复
热议问题