skip to Main Content

Php – Converting Epoch to EST, off by an hour?

I'm trying to convert an epoch into a human friendly date-time. I'm off by 1 hour. Why? $aptTime = 1694194200; if(!empty($aptTime)) { $aptDisplay = new dateTime("@$aptTime"); $aptDisplay->setTimezone(new DateTimeZone('EST')); $aptStr = date_format($aptDisplay, "l F jS a\t g:i A"); $html = '<p…

VIEW QUESTION
Back To Top
Search