博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php获取本周周一、周日时间,上周周一、周日时间,本月第一天,本月最后一天,上个月第一天,最后一天...
阅读量:5825 次
发布时间:2019-06-18

本文共 4960 字,大约阅读时间需要 16 分钟。

//这个星期的星期一  // @$timestamp ,某个星期的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式  function this_monday($timestamp=0,$is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $monday_date = date('Y-m-d', $timestamp-86400*date('w',$timestamp)+(date('w',$timestamp)>0?86400:-518400));          if($is_return_timestamp){              $cache[$id] = strtotime($monday_date);          }else{              $cache[$id] = $monday_date;          }      }      return $cache[$id];    }    //这个星期的星期天  // @$timestamp ,某个星期的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式  function this_sunday($timestamp=0,$is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $sunday = this_monday($timestamp) + 518400;          if($is_return_timestamp){              $cache[$id] = $sunday;          }else{              $cache[$id] = date('Y-m-d',$sunday);          }      }      return $cache[$id];  }    //上周一  // @$timestamp ,某个星期的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式  function last_monday($timestamp=0,$is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $thismonday = this_monday($timestamp) - 604800;          if($is_return_timestamp){              $cache[$id] = $thismonday;          }else{              $cache[$id] = date('Y-m-d',$thismonday);          }      }      return $cache[$id];  }    //上个星期天  // @$timestamp ,某个星期的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式  function last_sunday($timestamp=0,$is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $thissunday = this_sunday($timestamp) - 604800;          if($is_return_timestamp){              $cache[$id] = $thissunday;          }else{              $cache[$id] = date('Y-m-d',$thissunday);          }      }      return $cache[$id];    }    //这个月的第一天  // @$timestamp ,某个月的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式    function month_firstday($timestamp = 0, $is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $firstday = date('Y-m-d', mktime(0,0,0,date('m',$timestamp),1,date('Y',$timestamp)));          if($is_return_timestamp){              $cache[$id] = strtotime($firstday);          }else{              $cache[$id] = $firstday;          }      }      return $cache[$id];  }    //这个月的最后一天  // @$timestamp ,某个月的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式    function month_lastday($timestamp = 0, $is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $lastday = date('Y-m-d', mktime(0,0,0,date('m',$timestamp),date('t',$timestamp),date('Y',$timestamp)));          if($is_return_timestamp){              $cache[$id] = strtotime($lastday);          }else{              $cache[$id] = $lastday;          }      }      return $cache[$id];  }    //上个月的第一天  // @$timestamp ,某个月的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式    function lastmonth_firstday($timestamp = 0, $is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $firstday = date('Y-m-d', mktime(0,0,0,date('m',$timestamp)-1,1,date('Y',$timestamp)));          if($is_return_timestamp){              $cache[$id] = strtotime($firstday);          }else{              $cache[$id] = $firstday;          }      }      return $cache[$id];  }    //上个月的第一天  // @$timestamp ,某个月的某一个时间戳,默认为当前时间  // @is_return_timestamp ,是否返回时间戳,否则返回时间格式    function lastmonth_lastday($timestamp = 0, $is_return_timestamp=true){      static $cache ;      $id = $timestamp.$is_return_timestamp;      if(!isset($cache[$id])){          if(!$timestamp) $timestamp = time();          $lastday = date('Y-m-d', mktime(0,0,0,date('m',$timestamp)-1, date('t',lastmonth_firstday($timestamp)),date('Y',$timestamp)));          if($is_return_timestamp){              $cache[$id] = strtotime($lastday);          }else{              $cache[$id] =  $lastday;          }      }      return $cache[$id];  }  echo '本周星期一:'.this_monday(0,false).'';  echo '本周星期天:'.this_sunday(0,false).'';  echo '上周星期一:'.last_monday(0,false).'';  echo '上周星期天:'.last_sunday(0,false).'';  echo '本月第一天:'.month_firstday(0,false).'';  echo '本月最后一天:'.month_lastday(0,false).'';  echo '上月第一天:'.lastmonth_firstday(0,false).'';  echo '上月最后一天:'.lastmonth_lastday(0,false).'';

 

转载地址:http://jbsdx.baihongyu.com/

你可能感兴趣的文章
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>
渐变色文字
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
各种非算法模板
查看>>
node-express项目的搭建并通过mongoose操作MongoDB实现增删改查分页排序(四)
查看>>
如何创建Servlet
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>
BZOJ1014:[JSOI2008]火星人prefix——题解
查看>>
使用Unity3D引擎开发赛车游戏
查看>>
HTML5新手入门指南
查看>>
opennebula 开发记录
查看>>
ubuntu 修改hostname
查看>>
sql 内联,左联,右联,全联
查看>>
C++关于字符串的处理
查看>>
6、Web Service-拦截器
查看>>
Flask 源码流程,上下文管理
查看>>