php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #6894 strftime and 2000-10-29
Submitted: 2000-09-26 23:03 UTC Modified: 2000-10-30 11:17 UTC
From: martin dot m dot luethi at ascom dot ch Assigned:
Status: Closed Package: Date/time related
PHP Version: 4.0.2 OS: win32 (windows2000)
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:
19 + 12 = ?
Subscribe to this entry?

 
 [2000-09-26 23:03 UTC] martin dot m dot luethi at ascom dot ch
hi,

i use following php script:

$actualday = mktime(0,0,0);
for ($i = 0; $i < 60; $i++)
{
  echo strftime("%d.%m.%Y", $actualday)."<br>";
  $actualday += 60*60*24; //= 1 day
}

it just prints out a list with some dates, but why does the date 2000-10-29 (or 2001-10-28 ...) appears twice?



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-10-30 11:17 UTC] stas@php.net
Again and again... Not every day has 60*60*24 seconds, when daylight settings are in effect. On the border of daylight settings day can have one hour more or one hour less.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 17:01:30 2024 UTC