I'm trying to convert a RFC timestamp to a friendly date using PHP. Here's the example:
Wed, 17 Feb 2010 19:44:01 -0500
I'd like this to print as:
Wed, 17 Feb 2010 19:44:01 EST
Using date() + strtotime() doesn't seem to do the trick because it converts it to the server's timezone (in my case PST).
Is there a simple way to do this for all GMT offsets? Seems like there must be.