<?php
$xml_ = new SimpleXMLElement('http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml', NULL
, true);
$eur_tr = (float) $xml_->Cube->Cube->Cube[17]['rate']; //eur/tr
$eur_usd = (float) $xml_->Cube->Cube->Cube[0]['rate']; //eur/usd
//usd/tr
echo $eur_tr / $eur_usd;
?>