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

  • Home
  • SEARCH
  • 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 7130055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T11:18:33+00:00 2026-05-28T11:18:33+00:00

I need to parse XML string into an array. I have XML <group xmlns=123

  • 0

I need to parse XML string into an array.
I have XML

  <group xmlns="123" id="personal">
    <field id="last_name">last</field>
    <field id="first_name">first</field>
    <field id="birth_day">10/10/1990</field>
    <field id="gender"/>
  </group>

I’m using SimpleXML in php

$obj = simplexml_load_string($xml_string);
var_dump($obj);

SimpleXMLElement Object
(
[@attributes] => Array
    (
        [id] => personal
    )

[field] => Array
    (
        [0] => first
        [1] => last
        [2] => 10/10/1990
        [3] => SimpleXMLElement Object
            (
                [@attributes] => Array
                    (
                        [id] => gender
                    )

            )


    )

)

how to get such array? is it possible?

[field] => Array(
    [last_name] => last,
    [first_name] => first,
    [birth_day] => 10/10/1990,
    [gender] => NULL,
    ....

)

I do not know how else to explain this situation.
I want to index the id attribute value were.
please help.

  • 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-28T11:18:33+00:00Added an answer on May 28, 2026 at 11:18 am

    Simple as that (Note it uses PHP 5.3 features):

    libxml_use_internal_errors(true); // Turn off warnings because of invalid '123' namespace
    
    $obj = simplexml_load_string($xml);
    $obj->registerXPathNamespace('ns', '123');
    $fields = $obj->xpath('//ns:field');
    
    libxml_clear_errors(); // Clear warnings buffer
    
    $result = array();
    array_walk($fields, function($el) use (&$result) {
        $result[(string)$el['id']] = (string)$el ?: null;
    });
    
    echo '<pre>'; print_r($result); echo '</pre>';
    

    Output (null value is not shown by print_r):

    Array
    (
        [last_name] => last
        [first_name] => first
        [birth_day] => 10/10/1990
        [gender] => 
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to parse a XML into a string based on user's search input
I have the need to parse partial XML fragments (which are presented as std::string),
For a one-shot operation, i need to parse the contents of an XML string
I need to parse a bunch of incoming xml documents, they all have the
I have an XML file which I need to parse using PHP and send
I need to a parse an xml string(.NET, C#) which , unfortunately, is not
We need to parse an XML file with XSLT into a CVS file. The
I ran into a problem while trying to parse an XML string returned from
i have the following XML that i need to parse in C#: <data> <customer_id><![CDATA[1414301]]></customer_id>
I need to parse the following node: <media:keywords>keyword1,keyword2<![CDATA[keyword3]]></media:keywords> into a valid string, preferably keyword1,keyword2,keyword3

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.