Best way to change Twitter-API datetime's to a timestamp

Ueli picture Ueli · Jul 26, 2011 · Viewed 7.4k times · Source

The Twitter API sends created_at datetimes like this:

"created_at": "Mon Jul 25 05:51:34 +0000 2011", 

What's the best way to convert them in a timestamp and my local timezone (Europe/Zurich)? With strtotime(), I get results like 2013-11-08 20:07:00

Thank you very much

Best regards

Answer

KingCrunch picture KingCrunch · Jul 26, 2011
$datetime = new DateTime("Mon Jul 25 05:51:34 +0000 2011");
$datetime->setTimezone(new DateTimeZone('Europe/Zurich'));
echo $datetime->format('U');

See DateTime, DateTime::format(), DateTime::setTimezone(), DateTimeZone and date()