With a date string of Apr 30, 2010, how can I parse the string into 2010-04-30 using PHP?
Apr 30, 2010
2010-04-30
Try http://php.net/manual/en/function.strtotime.php to convert to a timestamp and then http://www.php.net/manual/en/function.date.php to get it in your own format.