In PHP, To convert from epoch to iso time:
<?php $timestamp = 1374421626; echo date('Y-m-d H:i:s', $timestamp); ?>
In PHP, And to convert from iso to epoch time:
<?php $isodate = "2013-07-21 22:23:24"; echo strtotime($isodate); ?>
In Java, while using system default Locale and TimeZone:
String epochToIso8601(long time) { String format = "yyyy-MM-dd HH:mm:ss"; SimpleDateFormat sdf = new SimpleDateFormat(format, Locale.getDefault()); sdf.setTimeZone(TimeZone.getDefault()); return sdf.format(new Date(time * 1000)); }
Just have not yet needed the reverse function yet.
/** TODO: insert code here */