Podrías usar SimpleXML para eso
Código PHP:
Ver original<?php
header('Content-Type: text/html; charset=utf-8'); $xml = new SimpleXMLElement('http://www.reporteinmobiliario.com/nuke/rss.xml', null, true);
foreach($xml->xpath('//item') as $item){
echo 'title = ' . $item->title . '<br />'
. 'description = ' . $item->description . '<br />'
. 'pubDate = ' . $item->pubDate . '<br />'
. 'link = ' . $item->link . '<br /><br />'; }