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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T03:16:36+00:00 2026-05-22T03:16:36+00:00

I am trying to get a child of a PHP DOMDocument. Say I have

  • 0

I am trying to get a child of a PHP DOMDocument. Say I have a DOM document like this:

<div>
   <h1 ></h1>
   <div id=2></div>
   <div class="test"></div>
...
</div>

I have a index number 3. Then I need to get the element <div class="test"></div>. In the DOMDocument API, there isn’t a method like children(3). Is there? How can I get a child with an index?

  • 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-22T03:16:37+00:00Added an answer on May 22, 2026 at 3:16 am

    You can use childNodes. This is a property of a DOM element that contains a NodeList containing all the element’s children. Ideally you’d be able to do $el->childNodes->item(2) (note that it’s 0-based, not 1-based, so 2 is the third item). However, this includes text nodes. So it’s hard to predict what number your node will be. This probably isn’t the best solution.

    You could go with alexn’s solution (getElementsByTagName('*')->item(2)), but again this has its drawbacks. If your nodes have child nodes, they will also be included in the selection. This could throw your calculation off.

    My preferred solution would be to use XPath: it’s probably the most stable solution, and not particularly hard.

    You’ll need to have created an XPath object with $xpath = new DOMXPath($document) somewhere, where $document is your DOMDocument instance. I’m going to assume that $el is the parent div node, the “context” that we’re searching in.

    $node = $x->query('*', $el)->item(2);
    

    Note that, again, we’re using a 0-based index to find which element in the selection it is. Here, we’re looking at child nodes of the top level div only, and * selects only element nodes, so the calculations with text nodes are unnecessary.

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

Sidebar

Related Questions

I'm trying to get the text contents of a .div('.child#') child of my event.target('h6.class'),
I am trying to get the index of child of its parent. For example:-
Just trying to get the (.portfoliocategs) category menu on this site to have a
I use PHP and jQuery. I'm trying to do something like this: $(this +
I am trying to get the child repeater's item count but for some reason
I'm trying to find a way to get the total number of child nodes
So i am trying get 2 div-containers which both should contain centered text (Both
I'm new to PHP, and was trying to create an Abstract class with a
I am trying to get the innerhtml of div tags in a file using
So, I'm having difficulty trying to append/add a child div to the parent div,

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.