NAME
Time::Zone - miscellaneous timezone manipulations routines
SYNOPSIS
use Time::Zone;
print tz2zone();print tz2zone($ENV{'TZ'});
print tz2zone($ENV{'TZ'}, time());
print tz2zone($ENV{'TZ'}, undef, $isdst);
$offset = tzlocaloffset();
$offset = tzoffset($TZ);
DESCRIPTION
This is a collection of miscellaneous timezone manipulation routines. "tz2zone()" parses the TZ environment variable and returns a timezonestring suitable for inclusion in date-like output. It opionally takes
a timezone string, a time, and a is-dst flag.
"tzlocaloffset()" determins the offset from GMT time in seconds. It only does the calculation once. "tzoffset()" determines the offset from GMT in seconds of a specified timezone. "tzname()" determines the name of the timezone based on its offset AUTHORS Graham BarrDavid Muir Sharnoff Paul Foley perl v5.8.8 2002-09-16 Time::Zone(3)