summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug35699.phpt
blob: 5e4951e9fc60f200587f28c7d2cba8e30339c5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #35699 (date() can't handle leap years before 1970)
--FILE--
<?php
date_default_timezone_set("UTC");

echo date(DATE_ISO8601, strtotime('1964-06-06')), "\n";
echo date(DATE_ISO8601, strtotime('1963-06-06')), "\n";
echo date(DATE_ISO8601, strtotime('1964-01-06')), "\n";
?>
--EXPECT--
1964-06-06T00:00:00+0000
1963-06-06T00:00:00+0000
1964-01-06T00:00:00+0000