I am working on a project and I am having an issue formatting an epoch time to a human readable time.
I have the following epoch time 1428512160 and when I
1428512160
Try the following code:
$reportedTimeString = date("d-m-Y H:i:s", $supportDetails["Reported"]);
Or the following:
$date = new DateTime(); $date->setTimestamp($supportDetails["Reported"]); $reportedTimeString = $date->format("d-m-Y H:i:s");