簡體   English   中英

無法在PHP中使用XPath選擇XML

[英]Not able to make selection of XML using XPath in PHP

我一直在嘗試訪問一些XML,如下所示:

<feed xmlns:s="http://syndication.nhschoices.nhs.uk/services" xmlns="http://www.w3.org/2005/Atom">
 <title type="text">NHS Choices - GP Practices Near Postcode - W1T4LB - Within 5km</title>
 <entry>
  <id>http://v1.syndication.nhschoices.nhs.uk/organisations/gppractices/27369</id>
  <title type="text">Fitzrovia Medical Centre</title>
  <updated>2011-08-20T22:47:39Z</updated>
  <link rel="self" title="Fitzrovia Medical Centre" href="http://v1.syndication.nhschoices.nhs.uk/organisations/gppractices/27369?apikey="/>
  <link rel="alternate" title="Fitzrovia Medical Centre" href="http://www.nhs.uk/ServiceDirectories/Pages/GP.aspx?pid=303A92EF-EC8D-496B-B9CD-E6D836D13BA2"/>
  <content type="application/xml">
   <s:organisationSummary>
    <s:name>Fitzrovia Medical Centre</s:name>
    <s:address>
     <s:addressLine>31 Fitzroy Square</s:addressLine>
     <s:addressLine>London</s:addressLine>
     <s:postcode>W1T6EU</s:postcode>
    </s:address>
    <s:contact type="General">
     <s:telephone>020 7387 5798</s:telephone>
    </s:contact>
    <s:geographicCoordinates>
     <s:northing>182000</s:northing>
     <s:easting>529000</s:easting>
     <s:longitude>-0.140267259415255</s:longitude>
     <s:latitude>51.5224357586293</s:latitude>
    </s:geographicCoordinates>
    <s:Distance>0.360555127546399</s:Distance>
   </s:organisationSummary>
  </content>
 </entry>
</feed>

我一直在使用這個PHP代碼來嘗試訪問數據:

<?php   

$feedURL = 'http://v1.syndication.nhschoices.nhs.uk/organisations/pharmacies/postcode/W1T4LB.xml?apikey=&range=5';
$xml = simplexml_load_file($feedURL);
$xml->registerXPathNamespace('s', 'http://syndication.nhschoices.nhs.uk/services');

$pharm_entries = $xml->xpath('//entry');

var_dump($pharm_entries);

foreach ($pharm_entries as $v)
{
    print_r($v->nodeValue);
}
?>

這里使用var_dump $pharm_entries總是空的。 由於某種原因,XPath沒有按原樣返回帶有查詢字符串的正確SimpleXMLElement 我希望當前的//entry能找到<entry>節點的所有實例,但它不會......?

我怎樣才能讓它發揮作用? 另外,獲取<s:address>標簽並打印出地址的每一行(仍使用XPath或其他方式)的最佳方法是什么?

一如既往地欣賞幫助。

嘗試注冊Atom命名空間:

$xml->registerXPathNamespace('a', 'http://www.w3.org/2005/Atom');

$pharm_entries = $xml->xpath('//a:entry');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM