Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: DateTime Daylight savings question

by broomduster (Priest)
on Sep 19, 2008 at 19:45 UTC ( [id://712598]=note: print w/replies, xml ) Need Help??


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".

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://712598]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2025-01-23 19:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which URL do you most often use to access this site?












    Results (66 votes). Check out past polls.