#當前時間戳 2020-01-16 15:50:15 echo date('Y-m-d H:i:s',strtotime('now')); #當前時間戳+1秒 2020-01-16 15:50:16 echo date('Y-m-d H:i:s',strtotime('+1second')); #當前時間戳+1分 2020-01-16 15:51:15 echo date('Y-m-d H:i:s',strtotime('+1minute')); #當前時間戳+1小時 2020-01-16 16:50:15 echo date('Y-m-d H:i:s',strtotime('+1hour')); #當前時間戳+1天 2020-01-17 15:50:15 echo date('Y-m-d H:i:s',strtotime('+1day')); #當前時間戳+1周 2020-01-23 15:50:15 echo date('Y-m-d H:i:s',strtotime('+1week')); #當前時間戳+1月 2020-02-16 15:50:15 echo date('Y-m-d H:i:s',strtotime('+1month')); #當前時間戳+1年 2021-01-16 15:50:15 echo date('Y-m-d H:i:s',strtotime('+1year')); #當前時間戳+12年,12月,12天,12小時,12分,12秒 2033-01-29 04:02:27 echo date('Y-m-d H:i:s',strtotime('+12year 12month 12day 12hour 12minute 12second'));