ホームページ >バックエンド開発 >PHPチュートリアル >PHP の日付が位置する月の日数_PHP チュートリアル

PHP の日付が位置する月の日数_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-20 11:06:441014ブラウズ

php日期所在月の天数

public function daysOfMonth ($year=NULL,$month=NULL) {
if ($year===NULL) {
$year = $this->getPart('yy') ;
}
if ($month===NULL) {
$month = $this->getPart('mm');
}
if ($month==2)
{
if (($year % 4 == 0 && $year % 100 != 0) || $year %

400 == 0)
$result = 29;
else
$result = 28;
}
elseif ($month == 4 | | $month == 6 || $month == 9 || $month

== 11)
$result = 30;
else
$result = 31;
$result;
}


www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/445010.html技術記事 php日期所在月の天数 public function daysOfMonth ($year=NULL,$month=NULL) { if ($year===NULL) { $year = $this-getPart('yy'); } if ($month===NULL) { $month = $this-getPart('m...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。