File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / date / tests / bug63391.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 20:03:42 2014 UTC (11 years ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29, HEAD
php 5.4.29

--TEST--
Test for #63391 (Incorrect/inconsistent day of week prior to the year 1600)
--FILE--
<?php
ini_set('date.timezone', 'UTC');

print "Date         PHP\n";
print "----------   ---\n";
$dates = array('1599-12-30', '1599-12-31', '1600-01-01', '1600-01-02');
foreach ($dates as $date) {
	echo date_create($date)->format('Y-m-d   D'), "\n";
}
?>
--EXPECT--
Date         PHP
----------   ---
1599-12-30   Thu
1599-12-31   Fri
1600-01-01   Sat
1600-01-02   Sun

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>