in reply to Re: How can I convert epoch seconds to date format
in thread How can I convert epoch seconds to date format

Or you could use the user's time settings to decide the order of year, month and day:
use POSIX 'strftime'; my $date = strftime '%c', localtime $epoch

Replies are listed 'Best First'.
Re^3: How can I convert epoch seconds to date format
by gellyfish (Monsignor) on May 10, 2006 at 14:59 UTC

    Some of the 'aggregate' specifiers don't work on all platforms (yes windows I'm loooking at you) unfortunately.

    /J\

      Maybe, but that particular one does work on Windows, at least in the ActiveState build. So do %x and %X. The order of the date/time components in the returned string when using those specifiers is dictated by the preferences set in "Regional Settings".