用php显示XML标记完整路径

时间:2012-05-04 18:49:12

标签: php xml

我们假设我们要处理此Feed:http://tools.forestview.eu/xmlp/xml_feed.php?aid=1094&cid=1000

我正试图以这种方式显示XML文件的节点:

deals->deal->dealsite
deals->deal->deal_id
deals->deal->deal_title

这是为了能够处理我们不知道XML标记是什么的Feed。因此,我们将让用户选择交易 - > deal-> deal_title是交易标题,并将以这种方式识别它。

我一直在尝试使用此代码执行此操作:

    class HandleXML {
    var $root_tag = false;
    var $xml_tags = array();
    var $keys = array();

function parse_recursive(SimpleXMLElement $element)
{
        $get_name = $element->getName();
        $children   = $element->children();     // get all children

        if (empty($this->root_tag)) {
            $this->root_tag = $this->root_tag.$get_name;
        }

        $this->xml_tags[] = $get_name;

        // only show children if there are any
        if(count($children))
        {
               foreach($children as $child)
               {
                $this->parse_recursive($child); // recursion :)
               }
        }
        else {
            $key = implode('->', $this->xml_tags);
            $this->xml_tags = array();
            if (!in_array($key, $this->keys)) {
                if (!strstr('>', $key) && count($this->keys) > 0) { $key = $this->root_tag.'->'.$key; }
                if (!in_array($key, $this->keys)) {
                    $this->keys[] = $key;
                }
            }
        }
    }
}

$xml = new SimpleXMLElement($feed_url, null, true);
$handle_xml = new HandleXML;

$handle_xml->parse_recursive($xml);
foreach($handle_xml->keys as $key) {
    echo $key.'<br />';
}
exit;

但这就是我得到的东西:

deals->deal->dealsite
deals->deal_id
deals->deal_title

在第2行和第3行看到 deal-&gt; 部分缺失。

我也试过这段代码:http://pastebin.com/FkPWXF64但它绝对不是最好的方法,它并不总是有效。

无论多少次我都做不到。

1 个答案:

答案 0 :(得分:0)

在我的一个网站中,我使用一种不同的方法来处理xml feed。在你的情况下,它看起来像:

$xml = simplexml_load_file("http://tools.forestview.eu/xmlp/xml_feed.php?aid=1094&cid=1000");

foreach($xml->{'deal'} as $deal) 
{
$dealsite = $deal->{'dealsite'};
$dael_id = $deal->{'dael_id'};
$deal_title = $deal->{'deal_title'};
$deal_url = $deal->{'deal_url'};
$deal_city = $deal->{'deal_city'};
$deal_category = $deal->{'deal_category'};

// and so on for the rest

// do some stuff with the variables like insert into MySQL

}