0

我正在尝试解析在某些字段名称中具有“g:”的 xml 文件

这是xml的示例

<entry>
       <title><![CDATA[here is the title]]></title>
       <link><![CDATA[http://www.example.com]]></link>
       <g:id><![CDATA[10]]></g:id>
       <g:condition><![CDATA[new]]></g:condition>
 </entry>

我想做的就是像这样回显名称和数据

 title: here is the title
 link: http://www.example.com
 id: 10
 condition: new

我的代码很简单

<?php
     $xml=simplexml_load_file("GoogleBaseFeed-2013-10-11.xml");
         foreach($xml->children() as $child)
         {
       foreach($child->children() as $child1)
     {
       echo $child1->getName() . ": " . $child1 . "<br>";
     }
         }
 ?>

但这段代码只回显标题和链接。它不会回显以“g:”开头的节点

4

0 回答 0