Someone was trying to assist me and came up with this, but I could not integrate it into my code correctly. Either that or this snippet itself is just wrong:
$datecomponents = explode("-", $date); // datecomponents[0] = year, [1] = month, [2] = day
$myformat = date("F j, Y", mktime(0, 0, 0, intval($datecomponents[1]), intval($datecomponents[2]), intval($datecomponents[0])));