PHP OPML Ayrıştırıcı

1 Cevap php

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/>";
    }
}

1 Cevap

Eğer bir PHP OPML ayrıştırıcı sınıfını kullanmak, bu gibi olabilir: http://www.mt-soft.com.ar/2007/12/21/opml-parser-php-class/

Örnek kullanım:

<?php
$url = 'http://example.com/foo.opml'; // URL of OPML file
$parser = new IAM_OPML_Parser();
echo $parser->displayOPMLContents($url);
?>