I am trying to convert a Mac UNIX timestamp to date time.
3448286095 should be converted to 2013-04-09 00:14:55.
I tried:
echo date('Y-m-d G:i:s', strtotime(3448286095));
The output is not correct.
UNIX Timestamp: seconds since Jan 1, 1970.
Mac Timestamp: seconds since Jan 1, 1904.