isLeapJalaliYear() public static method

Is this a leap year or not?
public static isLeapJalaliYear ( $jy ) : boolean
$jy
return boolean
Exemplo n.º 1
0
 public function testIsLeapJalaliYear()
 {
     $this->assertTrue(jDateTime::isLeapJalaliYear(1395));
     $this->assertFalse(jDateTime::isLeapJalaliYear(1394));
 }