|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-06-15 08:48 UTC] ruesche at fka dot de
-Summary: DateTime::add() produces inconsisten results
+Summary: DateTime::add() produces inconsistent resultst
[2012-06-15 08:48 UTC] ruesche at fka dot de
[2012-06-15 09:02 UTC] salathe@php.net
-Assigned To:
+Assigned To: derick
[2012-06-15 09:02 UTC] salathe@php.net
[2013-03-20 20:38 UTC] kavi at postpro dot net
[2013-05-03 10:50 UTC] rob dot norman at infinity-tracking dot com
[2017-03-19 10:34 UTC] heiglandreas@php.net
-Status: Assigned
+Status: Duplicate
[2017-03-19 10:34 UTC] heiglandreas@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 04:00:01 2025 UTC |
Description: ------------ When you use a timezone with daylight saving time (like Europe/Berlin) and the date of the system running the PHP script is in this daylight saving time (like 2012-06-15), DateTime::add() will produce results that are off by 1 hour. When the date on the local machine is not in the daylight saving time, the same computation will yield the expceted results. This bug also only appears, when the DateTime instance was created using a timestamp, so a workaround would be the following: Instead of $date = new DateTime(gmmktime(0, 0, 0, 1, 1, 2012)); use $date = new DateTime('2012-01-01'); The script was tested with the following systems, all having the same problem: - Windows XP, PHP 5.3.10 - Windows XP, PHP 5.3.13 - Windows 7, PHP 5.3.10 - Arch Linux (x86_64), PHP 5.4.3 - Debian Squeeze, PHP 5.3.10 Test script: --------------- <?php $oneMonth = new DateInterval('P1M'); $date = new DateTime('@'.gmmktime(0, 0, 0, 1, 1, 2012)); echo $date->format('Y-m-d H:i:s')."\n"; $date->add($oneMonth); echo $date->format('Y-m-d H:i:s')."\n"; Expected result: ---------------- 2012-01-01 00:00:00 2012-02-01 00:00:00 Actual result: -------------- 2012-01-01 00:00:00 2012-02-01 01:00:00