Algo así mas o menos, la imagen con el valor de la temperatura:
Código PHP:
Ver original<?php
$doc = new DOMDocument();
$doc->loadXML($xml);
$des = $doc->getElementsByTagName('description');
$con = $doc->getElementsByTagNameNS($doc->lookupNamespaceUri('yweather'), 'condition');
$temp = $con->item(0)->attributes->getNamedItem('temp')->nodeValue;
$doc->loadHTML($des->item(1)->nodeValue);
$imgs = $doc->getElementsByTagName('img');
$img = $imgs->item(0)->attributes->getNamedItem('src')->nodeValue;
?>
<img src="<?php echo $img; ?>" /><br />
<?php echo $temp . ' F'; ?>