I use PHP Runner to get data using REST API. The dates are showing as UNIX EPOCH Numbers. I need to show as human dates.
I can change the appearance using a custom view: $value - a value to be displayed on the page. Example:
$value = strtoupper($value);
$data - array with all field values. Example:
$value = $data["FirstName"].$data["LastName"];
where FirstName and LastName are actual field names.
Just not sure how to add the code. Any suggestions?