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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T02:57:44+00:00 2026-05-31T02:57:44+00:00

Can anyone help explain to me why the following is returning duplicate data? <?php

  • 0

Can anyone help explain to me why the following is returning duplicate data?

<?php
$xml_test = '<array key="results">
    <array key="123">
        <string key="mask">1234</string>
    </array>
    <array key="987">
        <string key="mask">5678</string>
    </array>
</array>';

$load_test = simplexml_load_string($xml_test);

foreach ($load_test as $array)
{
    $mask = $array->xpath('//string[@key="mask"]');

    print 'Mask: ' . $mask[0] . '<br />';
}

Returns:

Mask: 1234
Mask: 1234

If I throw a print_r($array) within the foreach loop, I get:

SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [key] => 123
        )

    [string] => 1234
)
Mask: 1234

SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [key] => 987
        )

    [string] => 5678
)
Mask: 1234

What the hell is going on? Why am I getting duplicate masks when I use an xPath expression when both of the $array quite clearly are not holding duplicate data.

  • 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-31T02:57:45+00:00Added an answer on May 31, 2026 at 2:57 am

    Starting the location path in xpath() with / makes it “absolute”, whereas you want to query “relative” to the $array element. For your example, just take out the //.

    foreach ($load_test as $array)
    {
        $mask = $array->xpath('string[@key="mask"]');
    
        print 'Mask: ' . $mask[0] . '<br />';
    }
    

    See also http://www.sitepoint.com/forums/showthread.php?723058-php-xml-loop&p=4778177&viewfull=1#post4778177

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

Sidebar

Related Questions

Can anyone help me explain how TimeProvider.Current can become null in the following class?
Can anyone help explain the following. I am having an issue with a Dictionary
Can anyone explain why I get the following errors when compiling the code shown
When I call random.randint() , I get the following error. Can anyone please explain
can anyone explain the following to me. I have two JavaScript functions defined in
Can anyone help me with the trying to write SQL (MS SqlServer) - I
Can anyone help with with the time complexity of this algorithm, and why it
Can anyone help? I have been designing a site using Javascript but the rest
can anyone help me in trying to check whether JavaScript is enabled in client
Can anyone help? I have been using the entity framework and its going well

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.