PHP parsing XML string, how to handle

Source: Internet
Author: User
PHP Parsing XML strings
I have such a 1 string
$XMLSTR = " 1 Test01 2 Test02
the ";

Want to get the following content
Id = 1
Name = Test01
Point = 40

Id = 2
Name = Test02
Point = 80
How can we achieve

------Solution--------------------
PHP code
 $xml =simplexml_load_string ($XMLSTR); foreach ($xml- >body->content as $item) {foreach ($item as $k = + $v) echo "$k $v \ n";} 
------Solution--------------------
Use the associated program for this paste, which can be very easy to avoid interference with identifiers such as line breaks:
http://topic.csdn.net/u/20120229/17/ 2d8adf3f-5273-4330-a399-b67b5e395e3d.html
The #17 content and associated content of this post.
Specifically:
1, compile the array as an XML string Dump_xml_config (),
2, write the XML string to the file File_put_contents_safe ();
3, http:// topic.csdn.net/u/20120228/09/cf787cd0-5936-4a15-9661-895f362b5b16.html
#10 to convert the contents of the XML file to an array parse_xml_config ().
Take what you want to use.
  • 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.