예제 #1
0
파일: Date.php 프로젝트: ulrikkold/cal
 /**
  * Determine if the year in this date is a leap year
  *
  * Determine if the year in this date is a leap year
  *
  * @access public
  * @return boolean true if this year is a leap year
  */
 function isLeapYear()
 {
     return Calc::isLeapYear($this->year);
 }