|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-03-19 11:36 UTC] heiglandreas@php.net
-Status: Open
+Status: Not a bug
[2017-03-19 11:36 UTC] heiglandreas@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 13:00:01 2025 UTC |
Description: ------------ Incorrect time offset for MSK timezone. Test script: --------------- $d = new DateTime('2014-07-03T14:03:25', new DateTimeZone('MSK')); echo $d->format(DateTime::W3C) . PHP_EOL; // Output: 2014-07-03T14:03:25+04:00 $d = DateTime::createFromFormat('Y-m-d\TH:i:s T', '2014-07-03T14:03:25 MSK'); echo $d->format(DateTime::W3C) . PHP_EOL; // Output: 2014-07-03T14:03:25+03:00 Expected result: ---------------- 2014-07-03T14:03:25+04:00 2014-07-03T14:03:25+04:00 Actual result: -------------- 2014-07-03T14:03:25+04:00 2014-07-03T14:03:25+03:00