Convert Facebook Graph API Date to UNIX timestamp
facebook, php
Solution
I don't know the date format but I suspect it is in a common and/or standard format so `strtotime()` should work just fine.
$timestamp = strtotime('2012-04-24T22:01:00+0000');
Problem
How might I convert a Facebook Graph API Date to a UNIX timestamp?