3v4l.org

run code in 300+ PHP versions simultaneously
<?php date_default_timezone_set('UTC'); $date = new DateTime('2015-06-23 18:00:00', new DateTimeZone('America/Sao_Paulo')); var_dump($date); $date->setTimezone(new DateTimeZone('-03:00')); var_dump($date); //var_dump($date->getTimestamp()); // comment out, to get the expected result $date->setTimezone(new DateTimeZone('America/Sao_Paulo')); var_dump($date);
Output for 7.0.17 - 7.0.33, 7.1.3 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" } object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "-03:00" } object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" }
Output for 5.5.14 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.16, 7.1.0 - 7.1.2
object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" } object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "-03:00" } object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 15:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" }
Output for 5.5.10 - 5.5.13
object(DateTime)#1 (3) { ["date"]=> string(19) "2015-06-23 18:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" } object(DateTime)#1 (3) { ["date"]=> string(19) "2015-06-23 18:00:00" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "-03:00" } object(DateTime)#1 (3) { ["date"]=> string(19) "2015-06-23 15:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" }
Output for 5.4.0 - 5.4.29, 5.5.0 - 5.5.9
object(DateTime)#1 (3) { ["date"]=> string(19) "2015-06-23 18:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" } Fatal error: Uncaught exception 'Exception' with message 'DateTimeZone::__construct(): Unknown or bad timezone (-03:00)' in /in/ldOMb:7 Stack trace: #0 /in/ldOMb(7): DateTimeZone->__construct('-03:00') #1 {main} thrown in /in/ldOMb on line 7
Process exited with code 255.
Output for 5.4.30 - 5.4.45
object(DateTime)#1 (3) { ["date"]=> string(26) "2015-06-23 18:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(17) "America/Sao_Paulo" } Fatal error: Uncaught exception 'Exception' with message 'DateTimeZone::__construct(): Unknown or bad timezone (-03:00)' in /in/ldOMb:7 Stack trace: #0 /in/ldOMb(7): DateTimeZone->__construct('-03:00') #1 {main} thrown in /in/ldOMb on line 7
Process exited with code 255.

preferences:
240.44 ms | 402 KiB | 383 Q