xref: /php-src/ext/date/tests/bug69806.phpt (revision 4e3d469c)
1--TEST--
2Bug #69806 (Incorrect date from timestamp)
3--SKIPIF--
4<?php if (PHP_INT_SIZE != 8) die("skip 64-bit only"); ?>
5--FILE--
6<?php
7ini_set('date.timezone', 'America/New_York');
8
9echo date('Y-m-d H:i:s', 2377224000)."\n";
10?>
11--EXPECT--
122045-05-01 00:00:00
13