1. 程式人生 > >php獲取指定日期,前一天、前一週、前一個月、前一年,後一天,後一週,前一個月,前一年

php獲取指定日期,前一天、前一週、前一個月、前一年,後一天,後一週,前一個月,前一年

dump( date( 'Y-m-d', strtotime('2018-10-1 +1 day') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 +1 week') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 +1 month') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 +1 year') ) );

 

dump( date( 'Y-m-d', strtotime('2018-10-1 -1 day') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 -1 week') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 -1 month') ) );

dump( date( 'Y-m-d', strtotime('2018-10-1 -1 year') ) );
---------------------
作者:kloumb
來源:CSDN
原文:https://blog.csdn.net/kloumb/article/details/84000700
版權宣告:本文為博主原創文章,轉載請附上博文連結!