コード例 #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);
 }