PHP中獲取時間的下一周,下個月等通常用於定制服務的時候使用,比如包月會員,包年等等
代碼如下: //通常用於定制服務的時候使用,比如包月會員,包年等等 //獲取當前時間過一個月的時間,以DATETIME格式顯示 date('Y-m-d H:i:s',strtotime('+1 month')) //獲取當前時間過一個月的時間,以時間戳格式顯示 strtotime(date('Y-m-d H:i:s',strtotime('+1 month'))) //以下是年,月,周,天,時,分秒的用法 date("Y-m-d H:i:s", strtotime(" +2 year")); date("Y-m-d H:i:s", strtotime(" +2 month")); date("Y-m-d H:i:s", strtotime(" +2 week")); date("Y-m-d H:i:s", strtotime(" +2 day")); date("Y-m-d H:i:s", strtotime(" +2 hour")); date("Y-m-d H:i:s", strtotime(" +2 minute")); date("Y-m-d H:i:s", strtotime(" +2 second"));