Created
January 17, 2014 14:34
-
-
Save jpgreth/8474363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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