<?php
$url = "// buraya xml sayfası adresi";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$kaynak = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXmlElement($kaynak);
// title için
$xml->channel->item[0]->title;
// decsription için
$xml->channel->item[0]->description;
// bunun gibi uzayıp gider.
?>