Skip to content

Instantly share code, notes, and snippets.

@michaelrepper
Created February 19, 2015 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelrepper/7355ac7b85c5f2fb0536 to your computer and use it in GitHub Desktop.
Save michaelrepper/7355ac7b85c5f2fb0536 to your computer and use it in GitHub Desktop.
r/Dailyprogrammer Challenge #202 Intermediate - Easter Date
<?php
for ($i = 2015; $i < 2026; $i++)
{
echo date('m/d/Y', easter_date($i)+86400) . "\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment