ID: 45554 Updated by: der...@php.net Reported By: tj at systisoft dot com -Status: Assigned +Status: Closed Bug Type: Date/time related Operating System: * PHP Version: 5.*, 6CVS (2009-05-09) Assigned To: derick New Comment:
This bug has been fixed in SVN. 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: ------------------------------------------------------------------------ [2009-07-29 15:35:00] s...@php.net Automatic comment from SVN on behalf of derick Revision: http://svn.php.net/viewvc/?view=revision&revision=286515 Log: - Fixed bug #45554 (Inconsistent behavior of the u format char). ------------------------------------------------------------------------ [2008-07-18 16:26:08] tj at systisoft dot com It seems that I am not totally awake. So date_create_from_format('m-d-Y H:i:s T', $dateTime->format('m-d-Y H:i:s T')); will generate an error. should read: So date_create_from_format('m-d-Y H:i:s.u T', $dateTime->format('m-d-Y H:i:s.u T')); will generate an error. ------------------------------------------------------------------------ [2008-07-18 11:28:52] tj at systisoft dot com Upsi, there should be 6 zeros in the microsecond part of the expected result. ------------------------------------------------------------------------ [2008-07-18 11:26:24] tj at systisoft dot com Description: ------------ The u format char behaves inconsistent. 1. In output the it uses 6 digits. When used in date_create_from_format it recognizes only up to 5 digits (though microseconds would be 6). So date_create_from_format('m-d-Y H:i:s T', $dateTime->format('m-d-Y H:i:s T')); will generate an error. 2. Though DateTime does not support microseconds (or does it?) and should cut them off it behaves very strange when parsing a date with fractional seconds. Reproduce code: --------------- $d = date_create_from_format("m-d-Y H:i:s.u T", "03-15-2005 12:22:29.00000 PST"); echo $d->format("m-d-Y H:i:s.u T"); $d = date_create_from_format("m-d-Y H:i:s.u T", "03-15-2005 12:22:29.00100 PST"); echo $d->format("m-d-Y H:i:s.u T"); Expected result: ---------------- 03-15-2005 12:22:29.00000 PST 03-15-2005 12:22:29.00000 PST Actual result: -------------- 03-15-2005 12:22:29.000000 PST 03-15-2005 12:22:29.100000000 PST ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=45554&edit=1