ID: 48708
Comment by: l_faillie at yahoo dot com
Reported By: l_faillie at yahoo dot com
Status: Open
Bug Type: Output Control
Operating System: All
PHP Version: 5.2.10
New Comment:
In ext/date/php_date.c, t->y (years) are stored as wide_int which is
'long long int' 64 bits but vararg or main/snprintf.c retrieve it as
'long int' (32 bits).
As consequence, on big endian system, only upper part is take in
account and contains only 0.
Tested on NetBSD / Sparc system but I guess reproducible on all big
endian system (IBM, sparc, 68000, ...).
Bye the way, what is the need having 64b years which as been introduced
w/ 5.2.10 ?
Bye
Laurent
Previous Comments:
------------------------------------------------------------------------
[2009-06-27 15:58:02] l_faillie at yahoo dot com
Description:
------------
In ext/date/php_date.c, years are stored as 64b integers but displayed
using "%04ld" (32b integers). Only work on little endian system
Reproduce code:
---------------
echo date('Y y o');
"0000 09 2009".
Expected result:
----------------
"2009 09 2009"
Actual result:
--------------
"0000 09 2009"
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=48708&edit=1