PHP easter_days() Function
Complete PHP Calendar Reference
Definition and Usage
The easter_days() function returns the number of days after March 21, on
which Easter falls for a specified year.
Syntax
| Parameter |
Description |
| year |
Optional. Defines the year to calculate the midnight on
Easter from. If the year parameter is omitted, the current year is used. |
| method |
Optional. Allows you to calculate Easter dates based on
other calendars. E.g. it uses the Gregorian calendar during the
years 1582 - 1752 when set to CAL_EASTER_ROMAN |
Tips and Notes
Note: If the year is outside of the range for Unix timestamps (before
1970 or after 2037), this function will generate a warning.
Example
<?php
echo(easter_days() . "<br />");
echo(easter_days(1990) . "<br />");
echo(easter_days(1342) . "<br />");
echo(easter_days(2050);
?>
|
The output of the code above will be:
Complete PHP Calendar Reference

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|