Php implements the method of converting arrays to XML. php implements the xml_PHP tutorial of array

Source: Internet
Author: User
Php implements the method of converting arrays into XML, and php implements array xml. Php implements the method of converting arrays to XML. php implements the array xml. This article describes how php implements the method of converting arrays to XML. Share it with you for your reference. Details are as follows: 1. php implements the method of converting arrays to XML on behalf of php, and php implements the array xml

This example describes how php converts arrays to XML. Share it with you for your reference. The details are as follows:

1. the php code is as follows:

<?phpclass A2Xml {  private $version  = '1.0';  private $encoding  = 'UTF-8';  private $root    = 'root';  private $xml    = null;  function __construct() {    $this->xml = new XmlWriter();  }  function toXml($data, $eIsArray=FALSE) {    if(!$eIsArray) {      $this->xml->openMemory();      $this->xml->startDocument($this->version, $this->encoding);      $this->xml->startElement($this->root);    }    foreach($data as $key => $value){       if(is_array($value)){        $this->xml->startElement($key);        $this->toXml($value, TRUE);        $this->xml->endElement();        continue;      }      $this->xml->writeElement($key, $value);    }    if(!$eIsArray) {      $this->xml->endElement();      return $this->xml->outputMemory(true);    }  }}$res = array(  'hello' => '11212',  'world' => '232323',  'array' => array(    'test' => 'test',    'b'  => array('c'=>'c', 'd'=>'d')  ),  'a' => 'haha');$xml = new A2Xml();echo $xml->toXml($res);

2. shows the running effect:

I hope this article will help you with php programming.

Examples in this article describes how php converts arrays to XML. Share it with you for your reference. Details: 1. php generation...

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.