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 1100345
In Process

The Archive Base Latest Questions

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

I am walking through a xml definition file and I have a DOMNodeList that

  • 0

I am walking through a xml definition file and I have a DOMNodeList that I am walking through.
I need to extract the contents of a child tag that may or may not be in the current entity

<input id="name">
  <label>Full Name:</label>
  <required />
</input>
<input id="phone">
  <required />
</input>
<input id="email" />

I need to replace ????????????? with something that gets me the contents of the label tag if
it exists.

Code:

foreach($dom->getElementsByTagName('required') as $required){
  $curr = $required->parentNode;

  $label[$curr->getAttribute('id')] = ?????????????
}

Expected Result:

Array(
  ['name'] => "Full Name:"
  ['phone'] => 
)
  • 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-17T00:51:59+00:00Added an answer on May 17, 2026 at 12:51 am

    Strange thing is: you already know the answer since you’ve used it in your script, getElementsByTagName().
    But this time not with the DOMDocument as context “node” but with the input DOMElement:

    <?php
    $doc = getDoc();
    foreach( $doc->getElementsByTagName('required') as $e ) {
      $e = $e->parentNode; // this should be the <input> element
      // all <label> elements that are direct children of this <input> element
      foreach( $e->getElementsByTagName('label') as $l ) {
        echo 'label="', $l->nodeValue, "\"\n";
      }
    }
    
    function getDoc() {
      $doc = new DOMDocument;
      $doc->loadxml('<foo>
        <input id="name">
          <label>Full Name:</label>
          <required />
        </input>
        <input id="phone">
          <required />
        </input>
        <input id="email" />
      </foo>');
      return $doc;
    }
    

    prints label="Full Name:"

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some HTML I need to parse. Basically I'm walking through the dom
I have a object that is created through deserialization of some XML. I used
I have been walking through an xsl document and am not sure what the
I have a 2giga mpeg file of people runnig,jogging,walking etc. in it. I will
I'm in a group that is trying to detect motion from people walking through
Walking through nokogiri and selecting elements with an xpath is fairly easy. I need
I'm walking through a Forloop 100'000 times. (that number can be diversified) Every 1000th
I am walking through a Visual FoxPro program trying to document the code in
Is there a jQuery type function to solve the problem of walking through nested
I am using the Google Appengine remote shell, with Python. I am walking through

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.