Help for this page

Select Code to Download


  1. or download this
    $H = int($C - ($C / 4) - ((8*$C+13) / 25) + 19*$G + 15) % 30;
    
  2. or download this
    $H = ($C - int($C / 4) - int((8*$C+13) / 25) + 19*$G + 15) % 30;
    
  3. or download this
    
    sub easter_date {
    ...
      return sprintf("%04d-%02d-%02d", $y, $m, $d);
    }