Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: How to convert time from one time zone to another

by ww (Archbishop)
on Apr 02, 2012 at 15:12 UTC ( [id://963037]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to convert time from one time zone to another
in thread How to convert time from one time zone to another

Actually I don't think the statement (that parent's code will produce an incorrect time during DST) is correct but neither do I think Robin's surmise that the code in Re: How to convert time from one time zone to another will "work on Windows" is universally correct. Under Windows7:
#!/usr/bin/perl use 5.014; # convert TZ say "\$ENV{TZ}: $ENV{TZ}"; # var had to be manually added on stock + W7 { local $ENV{TZ} = "EST+05"; say "In New York, it is " . localtime(); } { local $ENV{TZ} = "IST-05:30"; # does not return c +orrect time on W7 say "In Mumbai, it is " . localtime(); # but, rather, same + as NY localtime }

outputs:

$ENV{TZ}: EST5EDT # TZ is set but this does + # not appear to be defaul +t (for Win7) In New York, it is Mon Apr 2 10:41:23 2012 # correct In Mumbai, it is Mon Apr 2 10:41:23 2012 #obviously wrong

But this may be the result of a misconception on my part about 'doze ENV and its vars.
    Anyone care to explicate?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-03-28 16:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found