ID:               43003
 Updated by:       [EMAIL PROTECTED]
 Reported By:      post at jefago dot de
-Status:           Assigned
+Status:           Closed
 Bug Type:         Date/time related
 Operating System: Debian GNU/Linux
 PHP Version:      5.2.4
 Assigned To:      derick
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2007-10-17 12:30:34] post at jefago dot de

Description:
------------
A DateTime object that is created using a timestamp (with the
"@$iTimestamp" notation) but without a explicitly given time zone (in
the constructor) invalidly reports its time zone as the default time
zone, although its time zone really is UTC. Converting it to the default
time zone corrects this behaviour.

I know that this bug is somewhat similiar to
http://bugs.php.net/bug.php?id=41912, that was marked as "bogus", but I
think the demonstration code makes it clearer that in this case it is
really buggy behaviour.

In fact, the UNIX timestamp is quite clearly defined as "the number of
seconds since 1970-01-01 00:00:00 UTC" and thus it should be time zone
independant.

Reproduce code:
---------------
$oDateTest = new DateTime("@0", new
DateTimeZone(date_default_timezone_get()));
echo "timestamp 0, constructed with default time zone
(".$oDateTest->getTimezone()->getName()."): " .
$oDateTest->format("Y-m-d H:i:s")."<br />";
$oDateTest->setTimezone(new DateTimeZone("UTC"));
echo "timestamp 0, constructed with default time zone, set to
".$oDateTest->getTimezone()->getName()." afterwards: " .
$oDateTest->format("Y-m-d H:i:s")."<br />";
$oDateTest->setTimezone(new
DateTimeZone(date_default_timezone_get()));
echo "timestamp 0, constructed with default time zone, then set to UTC
and then to default time zone (".$oDateTest->getTimezone()->getName().")
again: " . $oDateTest->format("Y-m-d H:i:s")."<br />";

$oDateTest = new DateTime("@0");
echo "timestamp 0, constructed with default time zone
(".$oDateTest->getTimezone()->getName()."): " .
$oDateTest->format("Y-m-d H:i:s")."<br />";
$oDateTest->setTimezone( new
DateTimeZone(date_default_timezone_get()));
echo "timestamp 0, constructed with default time zone, explicitly set
to default time zone (".$oDateTest->getTimezone()->getName().")
afterwards: " . $oDateTest->format("Y-m-d H:i:s")."<br />";


Expected result:
----------------
timestamp 0, constructed with default time zone (Europe/Berlin):
1970-01-01 01:00:00
timestamp 0, constructed with default time zone, set to UTC afterwards:
1970-01-01 00:00:00
timestamp 0, constructed with default time zone, then set to UTC and
then to default time zone (Europe/Berlin) again: 1970-01-01 01:00:00
timestamp 0, constructed with default time zone (Europe/Berlin):
1970-01-01 01:00:00
timestamp 0, constructed with default time zone, explicitly set to
default time zone (Europe/Berlin) afterwards: 1970-01-01 01:00:00

Actual result:
--------------
timestamp 0, constructed with default time zone (Europe/Berlin):
1970-01-01 00:00:00 (Either the time zone or the reported time is
WRONG)
timestamp 0, constructed with default time zone, set to UTC afterwards:
1970-01-01 00:00:00
timestamp 0, constructed with default time zone, then set to UTC and
then to default time zone (Europe/Berlin) again: 1970-01-01 01:00:00
timestamp 0, constructed with default time zone (Europe/Berlin):
1970-01-01 00:00:00 (Either the time zone or the reported time is
WRONG)
timestamp 0, constructed with default time zone, explicitly set to
default time zone (Europe/Berlin) afterwards: 1970-01-01 01:00:00


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=43003&edit=1

Reply via email to