gpt4 book ai didi

PHP,需要从 DateTime 中减去 12 小时 30 分钟

转载 作者:IT王子 更新时间:2023-10-29 00:09:34 24 4
gpt4 key购买 nike

我有一个 PHP DateTime 变量。

如何在 PHP 运行时从该日期减少或减去 12 小时 30 分钟?

最佳答案

从 PHP 中的 DateTime 中减去 12 小时 30 分钟:

$date = new DateTime();
$tosub = new DateInterval('PT12H30M');
$date->sub($tosub);

P 代表期间。 T 代表时间跨度。

参见 DateTime , DateTime::sub , 和 DateInterval在 PHP 手册中。当然,您必须将 DateTime 设置为适当的日期和时间。

关于PHP,需要从 DateTime 中减去 12 小时 30 分钟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5768846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com