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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:58:23+00:00 2026-05-12T14:58:23+00:00

I have an xml file that I want to store a node’s rank attribute

  • 0

I have an xml file that I want to store a node’s rank attribute in a variable.

I tried:

echo $var = $xmlobj->xpath("//Listing[@rank]");

to no avail, it just prints ArrayArray.

How can this be done?

if($xmlobj = simplexml_load_string(file_get_contents($xml_feed)))
      {
            foreach($xmlobj as $listing)
            {

                  // echo 'Session ID: ' . $sessionId = $listing->sessionId . '<br />';
                  // echo 'Result Set: ' . $ResultSet = $listing->ResultSet . '<br />';

                  print_r($xmlobj->xpath("//Listing[@rank]"));

                  // $result = $xmlobj->xpath("/page/");
                  // print_r($result);

            }
      }

Henrik’s suggestion:

foreach($xmlobj as $listing)
{
      $var = $xmlobj->xpath("//Listing[@rank]");

      foreach ($var as $xmlElement) 
      {
            echo (string)$xmlElement;
      }
}

Here you go

<page>
   <ResultSet id="adListings" numResults="3">
      <Listing rank="1" title="Reliable Local Moving Company" description="TEST." siteHost="www.example.com">
      </Listing>
  • 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-12T14:58:24+00:00Added an answer on May 12, 2026 at 2:58 pm

    Edit after playing around with the posted example xml:

    • My initial answer was somewhat off track – casting to string would give you the inner text of the selected elements, if they have one (not the case here)
    • "//Listing[@rank]" selects all ‘Listing’ Elements that have a ‘rank’ attribute. If you want to select the attributes themselves, use "//Listing/@rank"
    • To output an attribute, use the SimpleXMLElement with array syntax: $xmlElement['rank']

    So in your case:

    foreach($xmlobj as $listing)
    {
        $var = $xmlobj->xpath("//Listing/@rank");
        foreach ($var as $xmlElement) 
        {
          echo $xmlElement['rank'];
        }
    }
    

    or

    foreach($xmlobj as $listing)
    {
        $var = $xmlobj->xpath("//Listing[@rank]");
        foreach ($var as $xmlElement) 
        {
          echo $xmlElement['rank'];
          echo $xmlElement['title']; // Added to demonstrate difference
        }
    }
    

    should work.

    In the first case, the $xmlElement would only contain the ‘rank’ attribute while in the second, it would contain the complete ‘Listing’ element (hence allowing the title output).

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

Sidebar

Related Questions

I have an xml file that I want to configure using a bash script.
I have a single XML file that I want to index using Lucene.NET. The
I have a flash applet that I want to grab a remote XML file
I have a ListView that is populated using an XML file. However, I want
I have an XML file that looks like <?xml version='1.0' encoding='UTF-8'?> <root> <node name=foo1
I have the following XML file and I want to store it using the
I have an xml-file that contains data that I want to read. The code
I have an XML file which I want to store on the users machine.
I have an xml from a webservice that I want to store in a
I have an XML file that has a number of nodes, each of which

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.