How to convert "Thu Oct 28 16:33:29 +0000 2010 " to like "Oct 28,2010 at 10:33PM"
+7
A:
Use the strtotime function combined with the date function
echo date("jS F, Y", strtotime("11/25/10"));
// outputs 25th November, 2010
orvado
2010-10-28 16:44:36