There is a small error in the PHP version, that
pg ported here: <updated, wrong name>.
The line
$H = int($C - ($C / 4) - ((8*$C+13) / 25) + 19*$G + 15) % 30;
Should be:
$H = ($C - int($C / 4) - int((8*$C+13) / 25) + 19*$G + 15) % 30;
The final sub sould look like:
sub easter_date {
my $Year = shift;
my ($G,$C,$H,$I,$J,$L)="0"x6;
$G = $Year % 19;
$C = int($Year / 100);
$H = ($C - int($C / 4) - int((8*$C+13) / 25) + 19*$G + 15) % 30;
$I = $H - int($H / 28)*(1 - int($H / 28)*int(29 / ($H + 1))*(int(21
+- $G) / 11));
$J = ($Year + int($Year/4) + $I + 2 - $C + int($C/4)) % 7;
$L = $I - $J;
my $m = 3 + int(($L + 40) / 44);
my $d = $L + 28 - 31 * (int($m / 4));
my $y = $Year;
return sprintf("%04d-%02d-%02d", $y, $m, $d);
}
This way, I think that it should be ok. What you think
greenFox?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.