in reply to Re^3: working with epoch seconds
in thread working with epoch seconds

it seems to work :), but what is the difference between POSIX 'strftime' and DateTime::strftime ?

LuCa

Replies are listed 'Best First'.
Re^5: working with epoch seconds
by Hue-Bond (Priest) on Oct 09, 2006 at 12:58 UTC

    DateTime::strftime works on DateTime objects, while POSIX::strftime works on the parameters you supply each time you call it. Apart from that, there should be no difference between them:

    use DateTime; use POSIX qw/strftime/; print DateTime-> now-> set_time_zone ('Europe/Madrid')-> strftime ("%Y %m %d, %H:%M:%S %Z\n"); print strftime "%Y %m %d, %H:%M:%S %Z\n", localtime; __END__ 2006 10 09, 14:57:36 CEST 2006 10 09, 14:57:36 CEST

    --
    David Serrano