Home >Backend Development >PHP Tutorial >PHP implements the method of converting arrays to XML, PHP implements array xml_PHP tutorial

PHP implements the method of converting arrays to XML, PHP implements array xml_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:04:29754browse

php implements the method of converting arrays to XML, php implements array xml

The example in this article describes the method of php converting arrays to XML. Share it with everyone for your reference. The details are as follows:

1. The php code is as follows:

<&#63;php
class 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. The operation effect is shown in the figure below:

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/965353.htmlTechArticlephp implements the method of converting arrays to XML, php implements array xml. This example describes how php implements converting arrays to XML method. Share it with everyone for your reference. The details are as follows: 1. php generation...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn