Format Date for Manual Insertion into post

That format is almost readable by strtotime. Remove the commas and it will convert.

$t="27 January, 2012, 5:05 AM";
$t = str_replace(',','',$t);
$t = strtotime($t);
echo date('Y-m-d H:i:s',$t);