- trim: documentation ( source)
<?php
$x = new simplexmlelement('<Listings>
<Listing>
<id>1</id>
<endereco>abc</endereco>
<Media>
<foto>
<arquivo>foto1.jpg</arquivo>
</foto>
<foto>
<arquivo>foto2.jpg</arquivo>
</foto>
</Media>
</Listing></Listings>');
foreach ($x as $listing):
echo 'endereco: ' . trim($listing->endereco) . "<br>";
foreach($listing->Media as $items):
foreach($items->foto as $foto):
echo 'Image: ' . trim($foto->arquivo) . "<br>";
endforeach;
endforeach;
endforeach;