mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Added a check to easter_date to allow it to run with years past 2037 when on a 64bit platform.
28 lines
559 B
PHP
28 lines
559 B
PHP
--TEST--
|
|
Test easter_date() on 32bit systems
|
|
--SKIPIF--
|
|
<?php if (PHP_INT_SIZE != 4) die("skip 32-bit only"); ?>
|
|
--INI--
|
|
date.timezone=UTC
|
|
--ENV--
|
|
TZ=UTC
|
|
--EXTENSIONS--
|
|
calendar
|
|
--FILE--
|
|
<?php
|
|
putenv('TZ=UTC');
|
|
echo date("Y-m-d", easter_date(2000))."\n";
|
|
echo date("Y-m-d", easter_date(2001))."\n";
|
|
echo date("Y-m-d", easter_date(2002))."\n";
|
|
try {
|
|
easter_date(1492);
|
|
} catch (ValueError $ex) {
|
|
echo "{$ex->getMessage()}\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
2000-04-23
|
|
2001-04-15
|
|
2002-03-31
|
|
easter_date(): Argument #1 ($year) must be between 1970 and 2037 (inclusive)
|