how can I get last week' date range in php?

后端 未结 12 1282
轻奢々
轻奢々 2020-12-23 23:23

how can I get last week\' date range in php ?

see my codes bellow:



        
12条回答
  •  伪装坚强ぢ
    2020-12-23 23:26

    Most of those other solutions offered were off by one day.
    If you want Sunday to Saturday for last week, this is the way to do it.

    $start = date("Y-m-d",strtotime("last sunday",strtotime("-1 week")));
    $end = date("Y-m-d",strtotime("saturday",strtotime("-1 week")));
    
    echo $start. " to ".$end;
    

提交回复
热议问题