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.

Everyone,

Apologies for the simplicity. I'm using PHP and XML for a quick one-off, when I'm much more comfortable in C# and SQL Server.

I have an XML file that looks something like this:

<items>
    <item>
         <name>Item A</name>
         <sort>2</sort>
    </item>

    <item>
         <name>Item B</name>
         <sort>3</sort>
    </item>

    <item>
         <name>Item C</name>
         <sort>1</sort>
    </item>
</items>

I need to delete all of the sort nodes, to this:

<items>
    <item>
         <name>Item A</name>
    </item>

    <item>
         <name>Item B</name>
    </item>

    <item>
         <name>Item C</name>
    </item>
</items>

Should be very simple, right?

share|improve this question
Duplicate of stackoverflow.com/questions/4177376/… – Gordon Mar 30 '11 at 19:08
Thanks Gordon. I must've read every post besides that one. Sorry for the duplication -- though hopefully someone in need will see this. – ropadope Mar 30 '11 at 19:20

1 Answer

up vote 0 down vote accepted

Yes...

$xml = simplexml_load_file('test.xml');
foreach($xml->item as $item) {
        unset($item->sort);
}
echo $xml->asXml();

Tested this.. simplexml is easier in my opinion. You would then write "$xml->asXML()" to your file.

share|improve this answer
Thanks for the quick answer. Gordon's link to stackoverflow.com/questions/4177376/… as a duplicate worked exactly as needed in my instance. – ropadope Mar 30 '11 at 19:21
no problem, I also updated my answer with simplexml. It actually works. ;) – Dalton Conley Mar 30 '11 at 19:22
I like this much better. Thanks again! – ropadope Mar 30 '11 at 19:28

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.