|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-11-15 16:52 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 17:00:01 2025 UTC |
Description: ------------ mktime() doesn't handle three digit year values correct. Reproduce code: --------------- <?php var_dump(date("Y", mktime(1, 2, 3, 4, 5, 123)));' ?> Expected result: ---------------- string(4) "2123" Actual result: -------------- string(4) "2023"