php在PHP中添加日期

时间:2012-11-27 07:59:30

标签: php

我想根据动态值添加或删除一天(或更多)。有时我想删除/添加4天,下次可能是9.我怎样才能在PHP中执行此操作?我希望有时间戳解决方案,所以我可以使用多个分区。

示例:2012-04-21 + 86400 //添加一天

这有什么好的解决方案吗?或者是否有其他好的方法,我可以使用动态值来删除或添加我想要的任何天数。

请随时提出建议!

2 个答案:

答案 0 :(得分:2)

看看strtotime()

http://fr2.php.net/manual/en/function.strtotime.php

$unix_time = strtotime("+1 day", strtotime("2012-11-01"));
echo date("Y-m-d H:i:s", $unix_time);

答案 1 :(得分:1)

你可以使用strtotime

$new_date = date('Y-m-d', strtotime($old_date . ' +1 day'));