本文实例讲述了p玩游戏的台式机配置hp实现将数组转换为xml的方法。分享给大家供大家参考。具体如下:
1. php代码如下:
<?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, $e大学生当兵好吗isarray=fal) { if(!$eisarray) { $this->xm秦朝后面是什么朝代l->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. 运行效果如下图所示:
ps:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线xml/json互相转换工具:
在线格式化xml/在线压缩xml:
xml在线压缩/格式化工具:
希望本文所述对大家的php程序设计有所帮助。
本文发布于:2023-04-06 19:25:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/3832b9b432cef48cdecafc58386ad173.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php实现将数组转换为XML的方法.doc
本文 PDF 下载地址:php实现将数组转换为XML的方法.pdf
留言与评论(共有 0 条评论) |