mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
- Fixed bug #43808 (date_create never fails (even when it should)). - Fixed bug #43527 (DateTime created from a timestamp reports environment timezone). - Fixed bug #43003 (Invalid timezone reported for DateTime objects constructed using a timestamp). - Fixed bug #42190 (Constructing DateTime with TimeZone Indicator invalidates DateTimeZone). - Fixed bug #41599 (setTime() fails after modify() is used).
11 lines
270 B
PHP
11 lines
270 B
PHP
--TEST--
|
|
Bug #43527 (DateTime created from a timestamp reports environment timezone)
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("Etc/GMT+1");
|
|
$datetime = new DateTime('Fri, 07 Dec 2007 19:05:14 +1000');
|
|
echo $datetime->getTimezone()->getName(), "\n";
|
|
?>
|
|
--EXPECT--
|
|
+10:00
|