我们可以在 PHP date() 函数中使用添加时间吗?

发布于 2024-10-19 10:00:40 字数 112 浏览 10 评论 0 原文

我正在尝试从当前时间开始制定时间表 至12小时后。我正在使用 date() 函数 检索当前时间,但如何增加 小时并调整 AM/PM?我可以在 date() 上加 1 吗 功能?

感谢您的帮助。

I am trying to make a schedule from the current hour
to 12 hours afterwards. I am using the date() function
to retrieve the current time but how can I increment the
hours and adjust the AM/PM? Can I just add 1 to the date()
function?

Thank you for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

野生奥特曼 2024-10-26 10:00:40
$now = time();
$then = $now + 12 * 60 * 60;
echo date(format, $then);
$now = time();
$then = $now + 12 * 60 * 60;
echo date(format, $then);
坏尐絯℡ 2024-10-26 10:00:40

您可以使用strtotime

date('d-m-Y H:i:s', strtotime('+1 hour')); // one hour since now

或者

date('d-m-Y H:i:s', strtotime('2011-02-25 14:00:42'));

You can use strtotime:

date('d-m-Y H:i:s', strtotime('+1 hour')); // one hour since now

or

date('d-m-Y H:i:s', strtotime('2011-02-25 14:00:42'));
懒的傷心 2024-10-26 10:00:40
$mydate = date("dateformat", time() + 43200);

time() 获取当前时间戳,然后添加 43200,即 12 小时 * 60 分钟 * 60 秒

$mydate = date("dateformat", time() + 43200);

time() gets the current timestamp, then you add 43200 which is 12 hours * 60 mins * 60 secs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文