Nasıl ben "href" ayıklamak

0 Cevap php

Ben benim PHP ayrıştırma script kullanarak bu XML bitten "link" etiketinden "href" niteliğini ayıklamak nasıl olarak stumped. Hepsi de yardımcı olursa, ben bir GetSatisfaction API yem belirli bir yazının URL'sini ayıklamak çalışıyorum.

İşte bir örnek XML dosyasından bir düğümdür:

<entry>
  <link rel="something" href="http://...url_I_need" type="text/html"/>

  <title type="html">...title here...</title>
  <content type="html">
  ...content here...
  </content>
</entry>

Ve burada benim PHP XML ayrıştırma script veri toplama kısmıdır:

$doc = new DOMDocument();
$doc->load('http://api.getsatisfaction.com/companies/issuetrak/topics?sort=recently_active&limit=7');
$arrFeeds = array();
foreach ($doc->getElementsByTagName('entry') as $node) {
 $title = $node->getElementsByTagName('title')->item(0)->nodeValue;
 //I need to just store the link->href value to $link below
 //$link = ???;
}

O "href" niteliğini ayıklamak konusunda herhangi bir öneriniz?

Teşekkürler!

0 Cevap