php 日期操作函数

 PHP日期操作相关

";

echo date('Y-m-d', strtotime('next day')).'下一天
'; echo date('Y-m-d', strtotime("$time + 1 day")).'下一天
'; echo date('Y-m-d', strtotime('last day')).'上一天
'; echo date('Y-m-d', strtotime("$time - 1 day")).'上一天
'; // 上一周的周一 echo date('Y-m-d', strtotime('last week')).'
'; // 下一周的周一 echo date('Y-m-d', strtotime('next week')).'
';

 

你可能感兴趣的:(php笔记)