« Return to Thread: php get rss tag using DOM

Re: php get rss tag using DOM

by Michael A. Peters :: Rate this Message:

Reply to Author | View in Thread

Rodgerr wrote:

>
>
> Morris-25 wrote:
>> Hi,
>>
>> I am trying to write a programme to read a rss xml file.
>>
>> ...
>> <media:content url="*exampe.jpg*" ...>
>> ...
>>
>>     scan anyone tell me how to get the url attribute? I wrote some codes
>> similar:
>>
>>
>>  $doc = new DOMDocument;
>>  $doc->load($myFlickrRss);
>>
>>  $r = $doc->getElementsByTagName('media:content');
>>  for($i=0;$i<=$r->length;$i++)  {
>>

$node = $r->item($i);
if ($node->hasAttribute('url') {
  $url[] = $node->>getAttribute('url');
  }

>>
>>  }

That should give you an array called $url of all the url attributes in
the nodes.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

 « Return to Thread: php get rss tag using DOM