PHP使用simpleXML解析georss命名空间

前端之家收集整理的这篇文章主要介绍了PHP使用simpleXML解析georss命名空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
试图解析谷歌地图RSS Feed中的lat / lon:
$file = "http://maps.google.com/maps/ms?ie=UTF8&hl=en&vps=1&jsv=327b&msa=0&output=geoRSS&msid=217909142388190116501.000473ca1b7eb5750ebfe";
$xml = simplexml_load_file($file);    
$loc = $xml->channel->item;
echo $loc[0]->title;
echo $loc[0]->point;

标题显示好,但点没有给我任何东西.每个节点如下所示:

<item> 
    <guid isPermaLink="false">0004740950fd067393eb4</guid> 
    <pubDate>Sun,20 Sep 2009 21:47:49 +0000</pubDate> 
    <title>Big Wong King Restaurant</title> 
    <description><![CDATA[<div dir="ltr">$4.99 full meals!</div>]]></description> 
    <author>neufuture</author> 
    <geoRSS:point> 
      40.716236 -73.998413
    </geoRSS:point> 
    <geoRSS:elev>0.000000</geoRSS:elev> 
  </item>
尝试这个:
<?PHP 
    $file = "http://maps.google.com/maps/ms?ie=UTF8&hl=en&vps=1&jsv=327b&msa=0&output=geoRSS&msid=217909142388190116501.000473ca1b7eb5750ebfe";
    $xml = simplexml_load_file($file);  
    $loc = $xml->channel->item;  
    foreach ($loc->children('http://www.geoRSS.org/geoRSS') as $geo) { 
        echo $geo;
    } 
?>

结帐这个Zend article for working with namespaces in XML

原文链接:https://www.f2er.com/php/138396.html

猜你在找的PHP相关文章