Beefy Boxes and Bandwidth Generously Provided by pair Networks kudra
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: Subtracting and Comparing Two Dates

by ikegami (Patriarch)
on Jan 08, 2007 at 18:11 UTC ( [id://593644]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re^2: Subtracting and Comparing Two Dates
in thread Subtracting and Comparing Two Dates

I don't see anything in POSIX similar to Time::Local's timegm. To which POSIX function were you refering?

Replies are listed 'Best First'.
Re^4: Subtracting and Comparing Two Dates
by BaldPenguin (Friar) on Jan 08, 2007 at 18:18 UTC
    timegm() in Time::Local == gmtime() in POSIX

    After looking it looks like Time::Local is a Pure Perl interface to the Perl localtime objects where POSIX is an XS interface to the system libraries.

    Don
    WHITEPAGES.COM | INC
    Everything I've learned in life can be summed up in a small perl script!

      I'm not sure that's quite right...

      sub gmtime { usage "gmtime(time)" if @_ != 1; CORE::gmtime($_[0]); }
      verses

      They seem to be different by a kilobyte or two. I noticed they both use CORE::gmtime() though.

      -Paul

      Not at all. Look at the arguments...

      FunctionPOSIX equivalentPurpose of Function
      CORE::gmtimePOSIX::gmtimeReturns GMT time components from epoch time.
      Time::Local::timegm[none]Returns the epoch time from GMT time components.
      CORE::localtimePOSIX::localtimeReturns local time components from epoch time.
      Time::Local::timelocalPOSIX::mktimeReturns the epoch time from local time components.

      POSIX is missing the very function that's needed here.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://593644]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.