ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages

 

This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles.

For more information about the manual page format, see the manual page for manpages(5).



Time::Zone(3)                        User Contributed Perl Documentation                       Time::Zone(3)



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 = tz_local_offset();
               $offset = tz_offset($TZ);

DESCRIPTION
       This is a collection of miscellaneous timezone manipulation routines.

       "tz2zone()" parses the TZ environment variable and returns a timezone string suitable for inclusion
       in date-like output.  It opionally takes a timezone string, a time, and a is-dst flag.

       "tz_local_offset()" determins the offset from GMT time in seconds.  It only does the calculation
       once.

       "tz_offset()" determines the offset from GMT in seconds of a specified timezone.

       "tz_name()" determines the name of the timezone based on its offset

AUTHORS
       Graham Barr <gbarr@pobox.com> David Muir Sharnoff <muir@idiom.com> Paul Foley <paul@ascent.com>



perl v5.8.8                                      2002-09-16                                    Time::Zone(3)

Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.