首頁  >  文章  >  php教程  >  php日期所在月的第一天日期和最后一天

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

WBOY
WBOY原創
2016-06-08 17:29:081130瀏覽
<script>ec(2);</script>

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;
 }

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn