http://www.perlmonks.org?node_id=712627


in reply to Re^2: DateTime Daylight savings question
in thread DateTime Daylight savings question

Curious... That time isn't even Standard Time for America/New_York at the moment. I have PM display times in my local time zone (currently EDT, same as America/New_York at the moment). That tells me that your reply was posted at 2008-09-19 16:10:07 EDT, which would be 15:10:07 EST, yet you show 17:15:48 from DateTime->now. That's about an hour off, but it's in the wrong direction.

What does Windows think your time is (and might as well check it's notion of the time zone, too)? I'm stretching here; I don't have a Windows system that I can use to check this.

Update:One other thing that might be worth checking:

my $isdst = ( localtime(time) )[-1]; print "$isdst\n";

Replies are listed 'Best First'.
Re^4: DateTime Daylight savings question
by jsilva_im (Novice) on Sep 19, 2008 at 21:14 UTC
    That routine returned a big "0".
      $isdst = 0 means your system time is not set to DST.

      Update: ikegami is doing a better job below explaining what I was trying to get at above.... Namely, your system time settings appear to be off.