php 取出周一和周日的时间戳

取出周一和周日的时间戳:能过下面两款取出周一和周日的时间戳实例可以看得出来很多的东西,要不断的思想哦,第一个自定的取出指定日期的时间戳比较好,但是如何是取出周一和周日第二个就更实用了。

  1. function getmonsun(){
  2. $curtime=time();
  3. $curweekday = date('w');
  4. //为0是 就是 星期七
  5. $curweekday = $curweekday?$curweekday:7;
  6. $curmon = $curtime - ($curweekday-1)*86400;
  7. $cursun = $curtime + (7 - $curweekday)*86400;
  8. $cur['mon'] = $curmon;
  9. $cur['sun'] = $cursun;
  10. return $cur;
  11. }
  12. $cur = getmonsun();
  13. echo date('y-m-d',$cur['mon']);
  14. echo "rn";
  15. echo date('y-m-d',$cur['sun']);
  16. //方法二 利用php strtotime函数
  17. echo strtotime('last monday');
  18. echo '

    ';

  19. echo strtotime('next sunday');