SimpleXMLElement::xpath returns an array of elements matching the XPath query.
This means that if you have only one element, you still have to work with the array and extract its first element:
var_dump($EurToday[0]);
But this will give you an object SimpleXMLElement:
object(SimpleXMLElement)[2]
string '17.4619' (length=7)
To get the float value that it contains, you must convert it to a float - for example, using floatval:
var_dump(floatval($EurToday[0]));
, :
float 17.4619
: , xpath false ( ), ( ), .