检查年份是否为闰年

Posted

tags:

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

check if the year is leap
  1. function is_leap($year){
  2. try {
  3. $year = intval(abs($year));
  4. if(is_numeric($year)){
  5. if(($year % 4) === 0){
  6. return true;
  7. }
  8. return false;
  9. }else{
  10. throw new Exception('is_leap() exepts one param as numeric given ,'.gettype($year));
  11. }
  12. }catch(Exception $e){
  13. trigger_error($e->getMessage(),E_USER_ERROR);
  14. }
  15. }

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

用JAVA判断是不是是闰年

判断指定年份是否为闰年

怎样用JAVA写判断一个年份是否闰年的程序?

判断闰年

用java定义一个判断闰年的方法,在main方法中调用该方法判断输入的一个年份是不是是闰年!

php之实战项目--年份判断是否为闰年