PHP教程

php转为xml

本文主要是介绍php转为xml,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 必须安装 PhpOffice 扩展库  才能跑
use PhpOffice\PhpWord\Shared\XMLWriter;
 public function toXml($data, $eIsArray=FALSE) {
  $this->xml = new XmlWriter();
   $this->version = '1.0';
	 $this->encoding = 'UTF-8';
  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);
  }
 }

这篇关于php转为xml的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!