我阅读了很多很长的文章和答案,但这些都没有简单描述,所有关于不同变量的讨论,其中许多都给出了不同的开始日期...
只想说
本周
$thissunday= xxxx; (in dd/mm/yyyy)
$thissaturday=yyyy; (in dd/mm/yyyy)
和前一周
$lastsunday= xxxx; (in dd/mm/yyyy)
$lastsaturday=xxx; (in dd/mm/yyyy)
我试过这个
$thisws = strtotime('Sunday this week');
$thiswe = strtotime('Saturday this week');
$lastws = strtotime('Sunday last week');
$lastwe = strtotime('Saturday last week');
并且长期无用的数字似乎是时间戳
是不是很复杂!?答案 0 :(得分:1)
答案 1 :(得分:1)
在date()之后使用strtotime()功能:
<?php echo date('d/m/Y', strtotime('Sunday last week'));