|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-14 18:39 UTC] sniper@php.net
[2005-01-14 18:40 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 24 03:00:02 2025 UTC |
Description: ------------ Hi! I found a bug in mktime(): try to give out the UNIX-Seconds for Jan 08 2005 at 16:45:27 with the mktime()-command! No chance to do that. What's the problem? Reproduce code: --------------- <?php echo mktime(16,45,27,01,08,2005) . "<br>"; echo date("d.m.Y - H:i:s",mktime(16,45,27,01,08,2005)); ?> Expected result: ---------------- 1105199127 08.01.2005 - 16:45:27 Actual result: -------------- 1104507927 31.12.2004 - 16:45:27