//一周后 |
date ( 'Y-m-d h:i:s' , strtotime ( '+1 week' )); |
//五小时后 |
date ( 'Y-m-d h:i:s' , strtotime ( '+5 hours' )); |
//下周一 |
date ( 'Y-m-d h:i:s' , strtotime ('next Monday)); |
//上周日 |
date ( 'Y-m-d h:i:s' , strtotime ( 'last Sunday' )); |
//时间戳加1天 |
date ( 'Y-m-d h:i:s' , strtotime ( '+1 day' ,12313223)); |