Instructions for using simplexml_load_string functions in PHP _php tips

Source: Internet
Author: User
Let's use a piece of code to reproduce the problem.
At first glance, the result is puzzling:
Copy Code code as follows:

<?php
$string = <<<eof
<data>
<foo><bar>hello</bar></foo>
<foo><bar>world</bar></foo>
</data>
EOF;

$data = simplexml_load_string ($string);

Print_r ($data);
Print_r ($data->foo);
?>

At first glance, the result is puzzling:
Copy Code code as follows:

SimpleXMLElement Object
(
[foo] => Array
(
[0] => simplexmlelement Object
(
[Bar] => Hello
)
[1] => simplexmlelement Object
(
[Bar] => World
)
)
)
SimpleXMLElement Object
(
[Bar] => Hello
)

Obviously Print_r shows Foo is an array of two bar elements, but it only shows a bar element at the end!
The reason is actually very simple, in the result of the simplexml_load_string as shown above, Foo is not an array, but an iterative object!
You can confirm this:
Copy Code code as follows:

foreach ($data->foo as $v) Print_r ($v);
foreach ($data->children () as $v) Print_r ($v);

It seems that the appearance of Print_r or var_dump is not entirely believable, and pay more attention to it.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.