PHP xml数组解析数据

时间:2013-08-23 14:11:07

标签: php xml xml-parsing domdocument

嘿所有我有这种类型的XML我试图从中获取数据。这只是大型XML代码的一小部分:

<entry>
  <id>http://www.google.com/calendar/feeds/[Letters/numbers here]group.calendar.google.com/public/basic/[Letters/numbers here]</id>
  <published>2013-08-01T13:40:24.000Z</published>
  <updated>2013-08-01T13:40:24.000Z</updated>
  <title type='html'>[Title Here]</title>
  <summary type='html'>When: Tue Sep 24, 2013 7am</summary>
  <content type='html'>When: Tue Sep 24, 2013 7am
        &lt;br /&gt;Event Status: confirmed
  </content>
  <link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=[Letters/numbers here]' title='alternate'/>
  <link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/[Letters/numbers here]group.calendar.google.com/public/basic/[Letters/numbers here]'/>
  <author>
    <name>[email here]</name>
    <email>[email here]</email>
  </author>     
</entry>

   etc... etc....

目前我可以通过以下方式获得发布更新

<?php
$url = strtolower($_GET['url']);
$doc = new DOMDocument(); 
$doc->load('http://www.google.com/calendar/feeds/[number/letters here].calendar.google.com/public/basic');
$entries = $doc->getElementsByTagName("entry");

foreach ($entries as $entry) { 
  $tmpPublished = $entry->getElementsByTagName("published"); 
  $published = $tmpPublished->item(0)->nodeValue;

  $tmpUpdated = $entry->getElementsByTagName("updated"); 
  $updated = $tmpUpdated->item(0)->nodeValue;
}
?>

但是我不确定如何从父数组中获取内部数据 - 在这种情况下是链接

所以我需要得到

链路&GT; HREF

我想这会是:

$tmpLink = $entry->getElementsByTagName("link"); 
$link = $tmpLink->item( 2 )->nodeValue;

任何帮助都会很棒!

2 个答案:

答案 0 :(得分:0)

你可以使用:

$links = $doc->getElementsByTagName("link");

foreach ($links as $link) { 
  $href = $link->getAttribute("href");
}

如果你想获得href ...希望我理解你想要的东西:)

答案 1 :(得分:0)

您可以使用以下代码simplexml_load_string执行此操作:

$entries = simplexml_load_string($string);

foreach ($entries as $entry) { 

    echo $entry->published;
    echo $entry->updated;  

    foreach($entry->link as $link)
    {
        echo $link->attributes()->type;
        echo $link->attributes()->rel;
    }
}