本文介绍了将 php 中的时间设置为 00:00:00的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要显示时间但它必须从 00:00:00 开始?我有以下内容,但它使用当前时间.
I need to display the time but it must start from 00:00:00? I've got the following but it uses the current time.
print(date("H:i:s"));
推荐答案
作为 mktime()
的替代方案,请尝试更新的 DateTime
类,例如
As an alternative to mktime()
, try the newer DateTime
class, eg
$dt = new DateTime;
$dt->setTime(0, 0);
echo $dt->format('H:i:s');
// Add one hour
$dt->add(new DateInterval('PT1H'));
echo $dt->format('H:i:s');
更新
DateInterval
的灵活性使其非常适合用作计时器,例如
Update
The flexibility of DateInterval
makes this a very good candidate for a timer, eg
// add 2 years, 1 day and 9 seconds
$dt->add(new DateInterval('P2Y1DT9S'));
这篇关于将 php 中的时间设置为 00:00:00的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!