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

WBOY
リリース: 2016-07-20 11:06:44
オリジナル
988 人が閲覧しました

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...
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!