Just a simple question. How do I convert a PHP ISO time (like 2010-06-23T20:47:48-04:00) to something more readable? Is there a function already built in PHP? I\'ve looked a
$format = "d M Y"; //or something else that date() accepts as a format date_format(date_create($time), $format);