一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php日期所在月的第一天日期和最后一天

时间:2009-11-23 编辑:简简单单 来源:一聚教程网

php日期所在月的第一天日期和最后一天

/**
  * 日期所在月的第一天日期
  * @return int
  */
 public function getFirstDayOfMonth ($format = 'timestamp') {
  $day = $this->getPart('yy') . '-' . $this->getPart('mm') .

'-' . '01';
  if ($format=='timestamp') {
   $day = (int)$this->toTimeStamp($day);
  }
  return $day;
 }
 /**
  * 日期所在月的最后一天日期
  * @return int
  */
 public function getLastDayOfMonth ($format = 'timestamp') {
  $day = $this->getPart('yy') . '-' . $this->getPart('mm') .

'-' . $this->daysOfMonth();
  if ($format=='timestamp') {
   $day = (int)$this->toTimeStamp($day);
  }
  return $day;
 }

热门栏目