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

This won't help the OP necessarily, but if you just want to display human-readable date and time without mucking with the data structure, remember that localtime() and gmtime(), when used in scalar context, return a string in the default format defined by ctime(3).

  • Comment on Re^2: How can I convert epoch seconds to date format