Lütfen nasıl OPML ayrıştırıcı yapmak için söyle. Ben kodu var ama hepsi genel OPML dosyaları için çalışmıyor:
if (file_exists('test.opml')) {
$xml =simplexml_load_file('test.opml');
}
for($i=0;$i<=count($xml);$i++) {
$array=array($xml->body->outline->outline[$i]);
$key=(array_keys($array));
foreach ($array as $key) {
echo "<strong>".($key['xmlUrl'][0])."</strong><br/>";
}
}