我有一个时间戳$ timestamp。如何使用strtotime为该时间戳添加6个月?
我在考虑做
$date = date('Y-m-d H:i:s', $timestamp);
$sixmonths_fromnow = strtotime('+6 months', $date);
但是我可以直接在时间戳上使用strtotime吗?我必须先使用date()函数吗?
答案 0 :(得分:3)
您需要使用timestamp
:
$sixmonths_fromnow = strtotime('+6 months', $timestamp);
echo date('Y-m-d H:i:s', $sixmonths_fromnow);