home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _5158ce0b509a05d3112744d8ec38e3da < prev    next >
Text File  |  2000-03-23  |  4KB  |  97 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Time::gmtime - by-name interface to Perl's built-in gmtime function</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Time::gmtime - by-name interface to Perl's built-in gmtime function</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#note">NOTE</A></LI>
  26.     <LI><A HREF="#author">AUTHOR</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>Time::gmtime - by-name interface to Perl's built-in <A HREF="../../lib/Pod/perlfunc.html#item_gmtime"><CODE>gmtime()</CODE></A> function</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.  use Time::gmtime;
  46.  $gm = gmtime();
  47.  printf "The day in Greenwich is %s\n", 
  48.     (qw(Sun Mon Tue Wed Thu Fri Sat Sun))[ gm->wday() ];</PRE>
  49. <PRE>
  50.  use Time::gmtime w(:FIELDS;
  51.  printf "The day in Greenwich is %s\n", 
  52.     (qw(Sun Mon Tue Wed Thu Fri Sat Sun))[ gm_wday() ];</PRE>
  53. <PRE>
  54.  $now = gmctime();</PRE>
  55. <PRE>
  56.  use Time::gmtime;
  57.  use File::stat;
  58.  $date_string = gmctime(stat($file)->mtime);</PRE>
  59. <P>
  60. <HR>
  61. <H1><A NAME="description">DESCRIPTION</A></H1>
  62. <P>This module's default exports override the core <A HREF="../../lib/Pod/perlfunc.html#item_gmtime"><CODE>gmtime()</CODE></A> function,
  63. replacing it with a version that returns ``Time::tm'' objects.
  64. This object has methods that return the similarly named structure field
  65. name from the C's tm structure from <EM>time.h</EM>; namely sec, min, hour,
  66. mday, mon, year, wday, yday, and isdst.</P>
  67. <P>You may also import all the structure fields directly into your namespace
  68. as regular variables using the :FIELDS import tag.  (Note that this
  69. still overrides your core functions.)  Access these fields as variables
  70. named with a preceding <CODE>tm_</CODE> in front their method names.  Thus,
  71. <CODE>$tm_obj->mday()</CODE> corresponds to $tm_mday if you import the fields.</P>
  72. <P>The <CODE>gmctime()</CODE> function provides a way of getting at the 
  73. scalar sense of the original CORE::gmtime() function.</P>
  74. <P>To access this functionality without the core overrides,
  75. pass the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> an empty import list, and then access
  76. function functions with their full qualified names.
  77. On the other hand, the built-ins are still available
  78. via the <CODE>CORE::</CODE> pseudo-package.</P>
  79. <P>
  80. <HR>
  81. <H1><A NAME="note">NOTE</A></H1>
  82. <P>While this class is currently implemented using the Class::Struct
  83. module to build a struct-like class, you shouldn't rely upon this.</P>
  84. <P>
  85. <HR>
  86. <H1><A NAME="author">AUTHOR</A></H1>
  87. <P>Tom Christiansen</P>
  88. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  89. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  90. <STRONG><P CLASS=block> Time::gmtime - by-name interface to Perl's built-in gmtime function</P></STRONG>
  91. </TD></TR>
  92. </TABLE>
  93.  
  94. </BODY>
  95.  
  96. </HTML>
  97.