Попробуйте это:
//get rid of the quotation marks
$yahoo_date = trim($yahoo_date, '"');
//will recognize yahoo's format and convert to a timestamp
$timestamp = strtotime($yahoo_date);
//you can now format it in any way you want
$reformatted_date = date('d/m/Y', $timestamp);