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.

How I edit the attributes or values of an XML element?

the file:

<element>
  <apple type="fruit">red</apple>
</element>


XMLreader:

        $xml= new XMLReader();
        $xml->open($file);

        while($xml->read()){
            if($xml->nodeType == XMLReader::ELEMENT) {
                if($xml->getAttribute('type') == "fruit") {

                       //change attr. and values to:
                       //apple = cabbage, fruit = vegetable, red = white

                }
            }               
        }
share|improve this question

1 Answer

up vote 1 down vote accepted

Well, in order to edit XML, you must not use a reader class ;-)


Instead, take a look at DOMDocument or SimpleXML.

share|improve this answer
Im using XMLreader to parse html content - and so I don't want to deal with caching issues – Zebra Apr 24 '11 at 9:03
You could use DOMDocument::loadHTML to parse HTML content ; and there would be no caching, except if you cache something yourself. – Pascal MARTIN Apr 24 '11 at 9:06
thank you – Zebra Apr 24 '11 at 11:15

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.