Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3362644
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T03:17:58+00:00 2026-05-18T03:17:58+00:00

I have what should be an easy task: delete <places> nodes and their descendants

  • 0

I have what should be an easy task: delete <places> nodes and their descendants from an XML document, leaving other nodes.

I tried this code, but it did not work …

$document->preserveWhiteSpace = false; 
$books = $xpath->query('piletilve_info/places');
//echo "4";

foreach ($books as $places) {
    while($places->hasChildNodes()) {
        $places->removeChild($places->childNodes->item(0));
    }

    $places->parentNode->removeChild($places);
}

Source XML to be processed:

<piletilve_info>
   <places>
      <place>
        ...
      </place>
   </places>
   <other node>
      ...
   </other node>
</piletilve_info>

In the actual data there are more nodes that aren’t places, but for simplicity this example shows only a few.

I saw C# examples, but I do not manage to port code to PHP.

Clarification : in code snippet, the variable $books is just a holder for the queried list. The name has no meaning.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T03:17:58+00:00Added an answer on May 18, 2026 at 3:17 am

    Goal is to delete whole node leaving other nodes ( in actual there are more, but for simplicity this example shows all

    $dom = new DOMDocument;
    $dom->load('places.xml');
    foreach ($dom->getElementsByTagName('places') as $places)
    {
        $places->parentNode->removeChild($places);
    }
    echo $dom->saveXml();
    

    will remove all <places> elements anywhere in the document, including any children.

    Output:

    <?xml version="1.0"?>
    <piletilve_info>
    
       <other>
          ...
       </other>
    </piletilve_info>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It should be easy, right? Have a listview, add an imagelist, add images to
I am struggling on something that, I am sure, should be easy. I have
Been pulling my hair out over what should have been a quick and easy
I'm trying to catch debug information from VMware. This might be an easy task
We should have a full release of asp.net MVC well before .NET 4.0 and
We have 18 databases that should have identical schemas, but don't. In certain scenarios,
When I asked this previously I should have mentioned that it's particularly a light-weight
I learned today that NetBeans 6.5 should have an on-the-fly compilation of (single) Java
We were having a debate if enums should have uninitialized values. For example. We
He want's to know our opinions on whether we should have flexitime, allow non-work

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.