php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13590 unix timestamp arithmetic has anomally
Submitted: 2001-10-07 19:05 UTC Modified: 2001-10-07 21:23 UTC
From: spedding at met dot co dot nz Assigned:
Status: Not a bug Package: Date/time related
PHP Version: 4.0.4pl1 OS: NT2000/(+Redhat)
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: spedding at met dot co dot nz
New email:
PHP Version: OS:

 

 [2001-10-07 19:05 UTC] spedding at met dot co dot nz
creating a unix timestamp for a date with zero hours / minutes, and then adding time of day as seconds gives wrong result.

snippet from my code
________________________
        echo ("\n<!-- before hms ".strftime ("%b %d %Y %H:%M:%S", $dateAndTime)."-->\n");
        $dateAndTime += 7200;
        echo ("\n<!-- before DST ".strftime ("%b %d %Y %H:%M:%S", $dateAndTime)."-->\n");
________________________
example outputs

timestamp before arithmetic
<!-- before hms Oct 07 2001 00:00:00-->

after adding 7199 (ie 01:59)
<!-- before DST Oct 07 2001 01:59:59-->

after adding 7200 (ie 02:00)
<!-- before DST Oct 07 2001 03:00:00-->

only seems to happen for this transition between 1:59 and 2:00 , after that the 1 hour error is consistent.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-07 20:52 UTC] spedding at met dot co dot nz
daylight saving confusion!
 [2001-10-07 21:23 UTC] mfischer@php.net
Hehe ;) Beats us every then and now.

Bogusified.

- Markus
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Dec 02 02:01:29 2024 UTC