php日期加减天数或月份实例

$t='2022-12-15';
// 一天后
echo date("Y-m-d", strtotime("+1 day", strtotime($t)));
// 一天前
echo date("Y-m-d", strtotime("-1 day", strtotime($t)));
// 两月后
echo date("Y-m-d", strtotime("+2 months", strtotime($t)));
// 两月前
echo date("Y-m-d", strtotime("-2 months", strtotime($t)));

你可能感兴趣的:(php,开发语言)