[PATCH] Incorrect/inconsistent day of week prior to the year 1600
| Bug #63391 | [PATCH] Incorrect/inconsistent day of week prior to the year 1600 | ||||
|---|---|---|---|---|---|
| Submitted: | 2012-10-30 01:44 UTC | Modified: | 2013-11-27 17:18 UTC | ||
| From: | tcarter at noggin dot com dot au | Assigned: | |||
| Status: | Closed | Package: | Date/time related | ||
| PHP Version: | 5.4.8 | OS: | Linux (x86_64) | ||
| Private report: | No | CVE-ID: | None | ||
[2012-10-30 01:44 UTC] tcarter at noggin dot com dot au
Description:
------------
PHP timelib calculates the day of the week incorrectly for dates prior to the 1st of January 1600.
Test script:
---------------
<?php
ini_set('date.timezone', 'UTC');
print "Date PHP OS\n";
print "---------- --- ---\n";
$dates = array('1599-12-30', '1599-12-31', '1600-01-01', '1600-01-02');
foreach ($dates as $date) {
print strftime(
"%Y-%m-%d %a ",
strtotime($date)
) . `env TZ=UTC date --date=$date +%a`;
}
?>
Expected result:
----------------
Date PHP OS
---------- --- ---
1599-12-30 Thu Thu
1599-12-31 Fri Fri
1600-01-01 Sat Sat
1600-01-02 Sun Sun
Actual result:
--------------
Date PHP OS
---------- --- ---
1599-12-30 Fri Thu
1599-12-31 Sat Fri
1600-01-01 Sat Sat
1600-01-02 Sun Sun
Patches
pre_1600_day_of_week_fix (last revision 2013-11-28 06:21 UTC by tcarter at noggin dot com dot au)Pull Requests
History
AllCommentsChangesGit/SVN commits
[2013-11-27 17:18 UTC] derick@php.net
[2013-11-28 06:23 UTC] tcarter at noggin dot com dot au
[2013-11-28 16:34 UTC] derick@php.net
-Status: Feedback +Status: Closed