PHP XML and arrays to convert each instance to a detailed

Source: Internet
Author: User
This article mainly introduces the PHP XML and arrays to each other to translate the relevant information, the need for friends can refer to the following

PHP XML and Arrays convert each other

Array to XML  function Arraytoxml ($arr)  {    $xml = "<xml>";    foreach ($arr as $key = + $val)    {      if (is_numeric ($val)) {        $xml. = "<". $key. " > ". $val." </". $key." > ";      } else{         $xml. = "<". $key. " ><! [cdata[]. $val. "] ></". $key." > ";      }    }    $xml. = "</xml>";    return $xml;  }  Convert XML to array  function Xmltoarray ($xml)  {      //disallow referencing of external XML entity    Libxml_disable_entity_loader (true);    $values = Json_decode (Json_encode (simplexml_load_string ($xml, ' simplexmlelement ', Libxml_nocdata)), true);        return $values;  }

Five pre-defined entities in the XML file:


<

<

Less than sign

>

>

Greater than sign

&

&

And

'

'

Single quotation marks

"

"

Double quotes

The above is the whole content of this article, I hope that everyone's study has helped.


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.