isLeapJalaliYear() public static method

Is this a leap year or not?
public static isLeapJalaliYear ( $jy ) : boolean
$jy
return boolean
コード例 #1
0
ファイル: jDateTimeTest.php プロジェクト: morilog/jalali
 public function testIsLeapJalaliYear()
 {
     $this->assertTrue(jDateTime::isLeapJalaliYear(1395));
     $this->assertFalse(jDateTime::isLeapJalaliYear(1394));
 }