PHP Convert ISO date to more readable format?
echo strftime("%b %e %Y at %l:%M %p", strtotime($ios));
will do
Try this:
echo date( "Y-m-d H:i:s", strtotime("2010-06-23T20:47:48-04:00") );
Format this part "Y-m-d H:i:s" using format
from this documentation http://php.net/manual/en/function.date.php
$format = "d M Y"; //or something else that date() accepts as a format
date_format(date_create($time), $format);