忘れたくないのでメモメモ
コードはこちら
<?php
function isLeapYear($y) {
return checkdate(2,29,$y);
}
if (isLeapYear(2014)){
echo"閏年です。";
}
ポイント
- checkdate関数は指定された日付が存在するかどうかを判断し、true、falseで返す。
Go to list of users who liked
More than 1 year has passed since last update.
忘れたくないのでメモメモ
コードはこちら
<?php
function isLeapYear($y) {
return checkdate(2,29,$y);
}
if (isLeapYear(2014)){
echo"閏年です。";
}
ポイント
Register as a new user and use Qiita more conveniently
Go to list of users who liked