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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:21:03+00:00 2026-06-04T06:21:03+00:00

When I do print_r($nodes); I get: Array ( [0] => SimpleXMLElement Object ( [kategoria_6]

  • 0

When I do print_r($nodes); I get:

Array (
  [0] => SimpleXMLElement Object (
    [kategoria_6] => 1
    [opis_6] => 1
    [img] => slides/slide0.jpg
  )
  [1] => SimpleXMLElement Object (
    [kategoria_6] => 2
    [opis_6] => 2
    [img] => slides/slide1.jpg
  )
  [2] => SimpleXMLElement Object (
    [kategoria_6] => 3
    [opis_6] => 3
    [img] => slides/slide4.jpg
  )
  [3] => SimpleXMLElement Object (
    [kategoria_6] => 4
    [opis_6] => 4
    [img] => slides/slide3.jpg
  )
  [4] => SimpleXMLElement Object (
    [kategoria_6] => 7
    [opis_6] => 7
    [img] => slides/slide2.jpg
  )
)

And now in this case, I can’t do this:

$nodes->asXML("c:\\aaa.xml");

because this is an array i could do f.ex:

$nodes[1]->asXML("c:\\aaa.xml");

but I’ll get only one element. I need to get all of this array, or better change it to this:

SimpleXMLElement Object (
  [item] => Array (
    [0] => SimpleXMLElement Object (
      [kategoria_6] => 1
      [opis_6] => 1
      [img] => slides/slide0.jpg
    )
    [1] => SimpleXMLElement Object (
      [kategoria_6] => 2
      [opis_6] => 2
      [img] => slides/slide1.jpg
    )
    [2] => SimpleXMLElement Object (
      [kategoria_6] => 3
      [opis_6] => 3
      [img] => slides/slide4.jpg
    )
    [3] => SimpleXMLElement Object (
      [kategoria_6] => 4
      [opis_6] => 4
      [img] => slides/slide3.jpg
    )
    [4] => SimpleXMLElement Object (
      [kategoria_6] => 7
      [opis_6] => 7
      [img] => slides/slide2.jpg
    )
  )
)

How do solve it?

  • 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-06-04T06:21:05+00:00Added an answer on June 4, 2026 at 6:21 am

    Unfortunately, SimpleXML by itself does not easily allow you to do what you want to do. Luckily, DOM does (FIXED):

    // Create a new DOMDocument
    $dom = new DOMDocument('1.0', 'utf-8');
    
    // Create the DocumentElement
    $documentElement = $dom->appendChild($dom->createElement('objects'));
    
    // Loop the SimpleXML elements and import them into DOM
    foreach ($val as $element) {
      $documentElement->appendChild($dom->importNode(dom_import_simplexml($element), TRUE));
    }
    
    // Save to file
    $dom->save("c:\\aaa.xml");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object called $definition in PHP. When I print_r($definition); I get Array
print_r($address['Country']); echo $address['Country']['name']; Here is what I get for the print_r: Array ( [Country]
This is my current array print_r Array( [0] => stdClass Object ( [category] =>
Is there a way to get PHP-like print_r(object) funcionality in iPython? I know I
<?php print_r($response->response->docs); ?> Outputs the following: Array ( [0] => Object ( [_fields:private] =>
i have printed out the contents of an array/object (named 'document') with print_r. it
when i print print_r($node) in the node.tpl.php. i get this. taxonomy] => Array (
I need to loop through the items as an array within the SimpleXMLElement Object
by using print_r($_POST); i am getting data something like this Array ( [selected_friends] =>
This is the set of result from my database print_r($plan); Array ( [0] =>

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.