我想用一个小时的变量创建一个时间戳。
例如: 当前时间戳是:
2015-09-29 14:00:00
我的变量是:$hour = 2
我想要的新时间戳:
2015-09-29 16:00:00
答案 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?