|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-11 09:05 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 13:00:01 2025 UTC |
Description: ------------ when passing the integers necessary to make a date of 4/1/2007, mktime returns an error value of 12/31/1969. Reproduce code: --------------- echo date("M-d-Y", mktime(0, 0, 0, 4, 1, 2007)) . "<br>"; Expected result: ---------------- Apr-01-2007 Actual result: -------------- Dec-31-1969