Hola,
Solucionado con el ejemplo de andresdzphp.
He cambiado
por
Código PHP:
$doc->loadHTMLFile
y he cambiado
Código PHP:
$con = $this->_xpath->query("/meteohub/data[@timeframe='$timeframe']/item[@sensor='$sensor' and @cat='$cat' and @unit='$unit']");
por
Código PHP:
$con = $this->_xpath->query("//data[@timeframe='$timeframe']/item[@sensor='$sensor' and @cat='$cat' and @unit='$unit']");
Gracias!