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 kind of new and I have the following XML structure an I would like to have codes that

INSERTS

DELETES Delete an entire element based on it's TITLE value.

EDIT Replace Publisher's value with another value

<Game type="XXX">
<TITLE>XXX</TITLE>
<PUBLISHER>XXX</PUBLISHER>
</Game>

This is my XML structure

<Game type="adventure">
<TITLE>Assassin's Creed: Brotherhood</TITLE>
<PUBLISHER>Ubisoft</PUBLISHER>
</Game> 

<Game type="adventure">
<TITLE>Batman: Arkham Asylum</TITLE>
<PUBLISHER>Eidos</PUBLISHER>
</Game>

</GameStore>

Any help would be great and thank you in avdance!

share|improve this question
1  
The first one is SimpleXML. The second one is DOM. Both only show the relevant parts to remove the node. They do not contain the setup code. Judging by your previous questions, you know how to instantiate a DOMDocument or a SimpleXmlElement. So what is your question? What is not working? – Gordon Jan 9 '11 at 11:43

3 Answers

up vote 1 down vote accepted

You will need to learn http://www.php.net/manual/fr/book.dom.php for manipulating xml.

There is some hints :

// Inserts
$new_node = $dom->createElement('foo', 'bar');
$gamestore_node = $xpath->query('/*')->item(0)->appendChild($new_node);
echo $dom->saveXML();

// Delete based on title
$deletable_node = $xpath->query("//Game[TITLE/text() = 'Batman: Arkham Asylum']")->item(0);
$deletable_node->parentNode->removeChild($deletable_node);
echo $dom->saveXML();

// EDIT Replace Publisher's value with another value
$editable_node = $xpath->query("//PUBLISHER[text() = 'Ubisoft']")->item(0);
$editable_node->nodeValue = 'baz';
echo $dom->saveXML();
share|improve this answer

Using SimpleXML:

<?php
// load the XML file
$games = simplexml_load_file('games.xml');
$i = 0;
foreach ($games as $game) {
    if ($game->TITLE == 'Batman: Arkham Asylum') {
        // remove the Game element
        unset($games->Game[$i]);
    }
    $i++;
}
// save the amended file
$games->asXML('games2.xml');
?>
share|improve this answer

You will want to use the PHP DOM classes. I think it goes something like this.

To load an XML file.

$xml = new DOMDocument();
$xml->load('path/to/file.xml');

To insert.

$node = $xml->createElement('Game');
$newnode = $xml->appendChild($node);

To delete based on title.

foreach ($xml->Game as $node) {
    if ($node->TITLE->nodeValue == 'some_title';
        $xml->removeChild($node);
    }
}

etc

more info at http://www.php.net/manual/en/book.dom.php

share|improve this answer

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.