Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to edit some XML with PHP. Currently the XML looking something like:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Main Title</title>
    <link>http://exmaple.com</link>
    <description> blahblahblah </description>
    <language>en</language>
    <item>
      <title>Tite1</title>
      <link>http://www.example.com (THIS IS WHAT I WANT)</link>
      <description>blah blah blah</description>
    </item>
    .
    .
    .
 </channel>
</rss>

I've tried to access the 2nd level link but my code only changes the first Link node value. Here is the code:

       $xml->load('http://www.google.com/doodles/doodles.xml');
    $element = $xml->getElementsByTagName('channel')->item(0);
    $secondlvl = $element->getElementsByTagName('item')->item(0);
    $2ndlevellinknode = $element->getElementsByTagName('link')->item(0);
    $2ndlevellinknode->nodeValue = $newvalue;

Any suggestions? Also is it possible to use this line of code in a for loop like this

for ($i = 0; $i <= 20; $i++) {
    $element = $xml->getElementsByTagName('channel')->item(0);
    $secondlvl = $element->getElementsByTagName('item')->item(0);
    $2ndlevellinknode = $element->getElementsByTagName('link')->item($i);
    $2ndlevellinknode->nodeValue = $newvalue;
}
share|improve this question
2  
I personally find PHP's SimpleXML much easier to work with. – Jason McCreary Feb 13 '12 at 21:03
Yes. Use SimpleXml. – busypeoples Feb 13 '12 at 21:06
$2ndlevellinknode = $secondlvl->getElementsByTagName('link')->item(0); // not $element->getElementsByTagName('link')->item(0); – Fivell Feb 13 '12 at 21:07
Can someone give an example of doing this with SimpleXML? – Nick Feb 13 '12 at 21:11
I can cook up something with DomDocument. What do you want to replace it to? – RPM Feb 13 '12 at 21:14
show 3 more comments

1 Answer

up vote 1 down vote accepted

this should give you an idea.

$f = simplexml_load_file('test.xml');
print $f->channel->title . "\n";
print $f->channel->link . "\n";
print $f->channel->description . "\n";
foreach($f->channel->item as $item) {
  print $item->title . "\n";
}
share|improve this answer
Got it, thanks! – Nick Feb 13 '12 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.