Skip to content

Instantly share code, notes, and snippets.

@abelcallejo
Last active April 12, 2020 06:41
Show Gist options
  • Save abelcallejo/1e420372910743c199c638009d9f8058 to your computer and use it in GitHub Desktop.
Save abelcallejo/1e420372910743c199c638009d9f8058 to your computer and use it in GitHub Desktop.
Calculating the Easter date with PHP

Calculating the Easter date with PHP

get_easter_datetime()

function get_easter_datetime($year) {
    $base = new DateTime("$year-03-21");
    $days = easter_days($year);

    return $base->add(new DateInterval("P{$days}D"));
}

Usage

echo get_easter_datetime(2020)->format('Y-m-d'); // 2020-04-12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment