i’m located in EST, but the server is PDT. i’m saving the date/time as a unix timestamp (time()) and using a format of date(“D, F jS g:i A T”, $post->DateCreated), which has an output that looks like this: Thu, June 10th 6:55 AM PDT.
since i’m EST, i’d like it to read Thu, June 10th 9:55 AM EST.
my first thought is to simply add 3 hours to the timestamp and not use “T” in the format and just put “EST” in it’s place…but i wanted to check with you all to see if there was a way where i could change the timezone “on the fly” with this timestamp.