Use Array2XML to convert the array into XML format, with the same node. array2xmlxml

Source: Internet
Author: User

Use Array2XML to convert the array into XML format, with the same node. array2xmlxml

Recently, a project needs to call a third-party interface. The data provided by the third-party is xml. I directly use Array2XML to convert the php array to XML format.

XML format:

<Root> <body> <item> </body> </root>

Because the php array cannot specify multiple repeated subscripts, the subsequent values will overwrite the previous values, and only one value will be displayed.

// Php does not support arrays in this format
$ Arr = ['body' => ['item' => [],
'Item' => [],
'Item' => []
];
$ Doc_xml = Array2XML: createXML ('root', $ arr );
$ Xml = $ doc_xml-> saveXML (); // only one item node is generated here.

The above php array is converted into XML using Array2XML, and there is only one item node in the body.

The PHP array can be written as the default format, without the multi-dimensional key and value format.

$ Arr = ['body' => ['item' => [
[],
[],
[];

Put all item nodes in the array with one item without writing key => value. In this way, Array2XML uses the item node to generate multiple item nodes.

 

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.