Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: time ()

by hakkr (Chaplain)
on Dec 05, 2001 at 14:29 UTC ( [id://129622]=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 time ()

use the localtime function
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($newtime);

Replies are listed 'Best First'.
Re: Re: time ()
by gbarr (Monk) on Dec 05, 2001 at 14:51 UTC
    Using localtime is fine if $newtime is a real time value. But from the description I assume it is a delta time. ie a value like 21870. Becasue of the zone offset, localtime would produce different results around the world. However gmtime() will always give what is wanted.

    ($seconds,$minutes,$hours,$days) = (gmtime($newtime))[0,1,2,7];

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://129622]
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.