saat farkı için biçimlendirme php tarih

0 Cevap php

Ben sadece CLI komut dosyası yürütme aldı süre ile yürütülecek bir komut sonucu çıktı istiyorum.

bunu yaparken için, ben senaryonun başında bir var ayarlanır

$start_time = time();

ve sonunda

date('H:i:s',time() - $start_time);

Sorun ellapsed zaman saniye veya dakika aralığında olabilir bile, her zaman en az bir saat geçti baskı olmasıdır:

>>> echo date('H:i:s',1);
01:00:01
>>> echo date('H:i:s', 10);
01:00:10
>>> echo date('H:i:s',3599);
01:59:59
>>> echo date('H:i:s',3600);
02:00:00

shouldn't it display 00:XX:YY, when less than an hour has passed? is there something I'm missing, is there a bug?

Yardımlarınız için teşekkürler!

0 Cevap