http://qs321.pair.com?node_id=712598


in reply to DateTime Daylight savings question

Works fine here on Mac OS X 10.4, NetBSD 3.1 and 4.0, and FreeBSD 6.2. The only thing I can think of is that the date is wrong, so maybe check that the date returned by DateTime->now is correct (print $dt->ymd, "\n";).

Replies are listed 'Best First'.
Re^2: DateTime Daylight savings question
by jsilva_im (Novice) on Sep 19, 2008 at 20:10 UTC
    I get the proper date with that, but the time is still off.
    $dt = DateTime->now; # same as ( epoch => time() ) $dt->set_time_zone( 'America/New_York' ); print "\n Now:".$dt->hms; print "\n YMD: ".$dt->ymd; #returns: # Now:17:15:48 # YMD: 2008-09-19
      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";
        That routine returned a big "0".