php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28275 mktime() b0rked for 4-4-YYYY
Submitted: 2004-05-04 19:07 UTC Modified: 2004-05-04 19:30 UTC
From: escot001 at student dot ucr dot edu Assigned:
Status: Not a bug Package: Calendar related
PHP Version: 4.3.5 OS: FreeBSD 4.9-STABLE
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
44 - 28 = ?
Subscribe to this entry?

 
 [2004-05-04 19:07 UTC] escot001 at student dot ucr dot edu
Description:
------------
When feeding mktime() the parameters 4 for month, 4 for date, and any year, the begining of the UNIX epoch is returned.

Reproduce code:
---------------
<?php

$d = 00;
$m = 00;

$y = 2010;  // can be any date, i assume - tested 2003, 2004, 2010


while ($m < 13) {
   $m++;
   while ($d < 32) {
      $d++;
      $cur_date = date("m-d-Y", mktime(0,0,0,$m,$d,$y));
      echo $cur_date;
      echo ("<br>");
   }
   $d = 00;
}
?>


Expected result:
----------------
03-22-2010
03-23-2010
03-24-2010
03-25-2010
03-26-2010
03-27-2010
03-28-2010
03-29-2010
03-30-2010
03-31-2010
04-01-2010
04-01-2010
04-02-2010
04-03-2010
04-04-2010
04-05-2010
04-06-2010
04-07-2010
04-08-2010
04-09-2010
04-10-2010
04-11-2010
04-12-2010
04-13-2010
04-14-2010
04-15-2010
04-16-2010
04-17-2010
04-18-2010
04-19-2010
04-20-2010
04-21-2010
04-22-2010
04-23-2010


Actual result:
--------------
03-22-2010
03-23-2010
03-24-2010
03-25-2010
03-26-2010
03-27-2010
03-28-2010
03-29-2010
03-30-2010
03-31-2010
04-01-2010
04-01-2010
04-02-2010
04-03-2010
12-31-1969
04-05-2010
04-06-2010
04-07-2010
04-08-2010
04-09-2010
04-10-2010
04-11-2010
04-12-2010
04-13-2010
04-14-2010
04-15-2010
04-16-2010
04-17-2010
04-18-2010
04-19-2010
04-20-2010

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-05-04 19:30 UTC] escot001 at student dot ucr dot edu
fixed in 4.3.6, sorry guys.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 08:01:27 2024 UTC