php: +1天, +3个月, strtotime(): +1 day, +3 month
比如,我现在当前时间基础上+1天:
strtotime("+1 day");
比如我现在,2014-05-01时间上 + 3个月
$s = strtotime("2014-05-01");
$d = strtotime("+3 month", $s);
本文共 224 字,大约阅读时间需要 1 分钟。
php: +1天, +3个月, strtotime(): +1 day, +3 month
比如,我现在当前时间基础上+1天:
strtotime("+1 day");
比如我现在,2014-05-01时间上 + 3个月
$s = strtotime("2014-05-01");
$d = strtotime("+3 month", $s);
转载于:https://www.cnblogs.com/achengmu/p/7859722.html