From: Operating system: PHP version: 5.3.8 Package: Date/time related Bug Type: Bug Bug description:ISO Format sets invalid timezone: Z
Description: ------------ --- >From manual page: http://www.php.net/datetime.construct#refsect1-datetime.construct-description --- Creating a DateTime from a string in the ISO8601 format "2011-12-06T19:55:34Z" will succeed, but with a DateTimeZone with name "Z". That is incorrect, since "Z" is the way to specify UTC in that ISO format. Furthermore, if you want to create a DateTimeZone("Z") it will throw. Best regards, hope this helps to make php better :) Test script: --------------- $dt = new DateTime("2011-12-06T19:55:34Z"); $tz = $dt->getTimeZone(); echo $tz->getName(); Expected result: ---------------- "UTC" Actual result: -------------- "Z" -- Edit bug report at https://bugs.php.net/bug.php?id=60453&edit=1 -- Try a snapshot (PHP 5.4): https://bugs.php.net/fix.php?id=60453&r=trysnapshot54 Try a snapshot (PHP 5.3): https://bugs.php.net/fix.php?id=60453&r=trysnapshot53 Try a snapshot (trunk): https://bugs.php.net/fix.php?id=60453&r=trysnapshottrunk Fixed in SVN: https://bugs.php.net/fix.php?id=60453&r=fixed Fixed in SVN and need be documented: https://bugs.php.net/fix.php?id=60453&r=needdocs Fixed in release: https://bugs.php.net/fix.php?id=60453&r=alreadyfixed Need backtrace: https://bugs.php.net/fix.php?id=60453&r=needtrace Need Reproduce Script: https://bugs.php.net/fix.php?id=60453&r=needscript Try newer version: https://bugs.php.net/fix.php?id=60453&r=oldversion Not developer issue: https://bugs.php.net/fix.php?id=60453&r=support Expected behavior: https://bugs.php.net/fix.php?id=60453&r=notwrong Not enough info: https://bugs.php.net/fix.php?id=60453&r=notenoughinfo Submitted twice: https://bugs.php.net/fix.php?id=60453&r=submittedtwice register_globals: https://bugs.php.net/fix.php?id=60453&r=globals PHP 4 support discontinued: https://bugs.php.net/fix.php?id=60453&r=php4 Daylight Savings: https://bugs.php.net/fix.php?id=60453&r=dst IIS Stability: https://bugs.php.net/fix.php?id=60453&r=isapi Install GNU Sed: https://bugs.php.net/fix.php?id=60453&r=gnused Floating point limitations: https://bugs.php.net/fix.php?id=60453&r=float No Zend Extensions: https://bugs.php.net/fix.php?id=60453&r=nozend MySQL Configuration Error: https://bugs.php.net/fix.php?id=60453&r=mysqlcfg