As in your other question, you could use an approach with xpath:
$xml = simplexml_load_file($url);
foreach ($xml->entry as $entry) { // loop over the entries
print_r($entry->xpath('//d:BC_3MONTH')); // gives you the actual BC_3MONTH
print_r($entry->xpath('//d:Id')); // the actual ID
}