在用php做统计报表的时间可能会用到返回本周时间、本月时间、本季度时间
本周时间段:
$startTime = mktime(0,0,0,date( "m "),date( "d ") - date('N') + 1,date( "Y "));//周开始
$stopTime = mktime(23,59,59,date( "m "),date( "d ") - date('N') + 7,date( "Y "));//周结束
本月时间段:
$timestamp=strtotime(date('Y-m-d'));
$mdays=date('t',$timestamp);
$startTime=strtotime(date('Y-m-1 00:00:00',$timestamp));
$stopTime=strtotime(date('Y-m-'.$mdays.' 23:59:59',$timestamp));
本季度时间段:
$season = ceil((date...