1. Home
  2. Computing & Technology
  3. PHP / MySQL

Easter_date () PHP Function

By Angela Bradley, About.com

Definition: Because Easter always falls on a Sunday, its numeric date changes every year. If we need to dynamically mark this on the calendar, we can use the easter_date () function. This function returns the timestamp for easter of a given year, or if no year is specified, the date of easter in the current year is returned. It is written as: easter_date (optional_year) ;
Also Known As: Easter Date, Easter Sunday
Examples:
<?php
echo easter_date(2005) ;
// Returns 1111899600

echo date("M-d-Y", easter_date(2006)) ;
//Returns Apr-16-2006

echo date("M-d-Y", easter_date()) ;
// Returns date of Easter for current year
?>

Explore PHP / MySQL

More from About.com

  1. Home
  2. Computing & Technology
  3. PHP / MySQL
  4. PHP Functions
  5. PHP Easter Date - Easter Date Year - PHP Easter Calendar

©2008 About.com, a part of The New York Times Company.

All rights reserved.