Skip to content

Instantly share code, notes, and snippets.

@jpgreth
Created January 17, 2014 14:34
Show Gist options
  • Select an option

  • Save jpgreth/8474363 to your computer and use it in GitHub Desktop.

Select an option

Save jpgreth/8474363 to your computer and use it in GitHub Desktop.
<?php
// Convert the Facebook IETF RFC 3339 datetime to timestamp format
$created_time = "2011-07-06T08:06:28+0000";
$date_source = strtotime($created_time);
$timestamp = date('Y-m-d H:i:s', $date_source);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment