|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-06-27 16:04 UTC] l_faillie at yahoo dot com
[2009-06-27 20:59 UTC] derick@php.net
[2009-06-28 20:00 UTC] l_faillie at yahoo dot com
[2009-06-28 22:33 UTC] scottmac@php.net
[2009-06-29 22:07 UTC] l_faillie at yahoo dot com
[2009-06-29 22:47 UTC] jani@php.net
[2009-07-07 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 20:00:01 2025 UTC |
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"