I have a Date/Time string from facebook graph that i need to convert to a readable date time.
2010-09-17T04:07:36+0000
How can I format it to GMT+8 using php to
You can also get Date object using
$date_object = date_create('2010-09-17T04:07:36+0000');