创建一小时前的时间戳

时间:2015-09-29 13:43:52

标签: php mysql

我想用一个小时的变量创建一个时间戳。

例如: 当前时间戳是:

2015-09-29 14:00:00

我的变量是:$hour = 2

我想要的新时间戳:

2015-09-29 16:00:00

1 个答案:

答案 0 :(得分:2)

只需使用php的strtotime功能即可。

例如:

$twoHoursAgo = Date("Y-m-d H:i:s", strtotime("-2 hours"));

有关详情,请参阅以下链接Get the timestamp of exactly one week ago in PHP?