blob: 56ca7eaeb56522c1e3e354514b1e9dcfbe84e6fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
easter_days()
--EXTENSIONS--
calendar
--FILE--
<?php
echo easter_days(1999), "\n";
echo easter_days(1492), "\n";
echo easter_days(1913), "\n";
?>
--EXPECT--
14
32
2
|