php获取指定日期

/**
 php获取指定日期的前一天,前一月,前一年日期
*/

$time = "2017-7-28";        //特定时间

echo "前一天的日期为". date("Y-m-d",strtotime("-1 days",$time))."
"; echo "前一月的日期为". date("Y-m-d",strtotime("-1 months",$time))."
"; echo "前一年的日期为". date("Y-m-d",strtotime("-1 years",$time))."
"; //如果是后一天,后一年,后一个月的日期 echo "后一天的日期为". date("Y-m-d",strtotime("+1 days",$time))."
"; echo "后一月的日期为". date("Y-m-d",strtotime("+1 months",$time))."
"; echo "后一年的日期为". date("Y-m-d",strtotime("+1 years",$time))."
"; //如果不是1,就把+1或者-1换成+n或者-n就可以了。

你可能感兴趣的:(php获取指定日期)