Una prima bozza di codice puo' essere la seguente
$Tag = "title"; // Definisci un tag che contiene per esempio il titolo
$xml_source = " "; // il sorgente del file xml
$esp = '/<($Tag)>([^>]*)<\/($Tag)>/';
$match = preg_match_all("$esp", $xml_source, $match_esp, PREG_SET_ORDER);
foreach($match_esp as $ex1)
{
$title = chop(trim($ex1['2']));
echo $title" ";
}