Comment utiliser php pour convertir un tableau en XML : [class Array_to_Xml{private $version = '1.0';private $encoding = 'UTF-8';private $root = 'ro...].
L'environnement d'exploitation de cet article : système windows10, php 7, ordinateur thinkpad t480.
Ce qui suit est le code d'implémentation spécifique pour convertir des tableaux en XML à l'aide de php, jetons un coup d'œil.
Code d'implémentation spécifique :
<?php class Array_to_Xml { 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' ); header("Content-type:text/xml");//输出xml头信息 $xml = new Array_to_Xml();//实例化类 echo $xml->toXml($res);//转为数组 ?>
Regardez l'effet de course :
Apprentissage recommandé : Formation php
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!