1. 程式人生 > >PHP中獲取時間的下一週下個月的方法

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"));