PHP 检查一年是否是闰年

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 检查一年是否是闰年相关的知识,希望对你有一定的参考价值。

<?php
    /*
    Copyright (c) 2008, reusablecode.blogspot.com; some rights reserved.
    Thanks to Jim Mayes for showing me a more elegant solution.

    This work is licensed under the Creative Commons Attribution License. To view
    a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or
    send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California
    94305, USA.
    */

    // Check if a year is a leap year.
    function isLeapYear($someYear)
    {
        return date("L", strtotime($someYear . "-01-01"));
    }
?>

以上是关于PHP 检查一年是否是闰年的主要内容,如果未能解决你的问题,请参考以下文章

判断一年是不是为闰年的java程序怎么写?

判断某一年是否为闰年

C语言程序设计判断某一年是不是是闰年

用JAVA判断是不是是闰年

html里JavaScript编写输入任意一年判断二月有几天(是不是是闰年)的程序?

Java实例——判断某一年是否为闰年