本文实例讲述了Codeigniter通过SimpleXML将xml转换成对象的方法。分享给大家供大家参考。具体分析如下:
SimpleXML是一个php扩展,有了它可以非常容易的操作xml文件
class CI_ManipulateXML
{
var $xml='';
function CI_ManipulateXML($xmlcontent)
{
$this->xml=$xmlcontent;
}
function ConvertXML() {
try {
$xmlobject
XML转换器
安装
使用安装软件包:
$ composer require nilportugues/xml
用法
给定一个PHP对象和一系列映射, XML Transformer将给定的数据表示为XML对象。
例如,给出以下代码,定义博客文章和一些评论:
$ post = new Post (
new PostId ( 9 ),
'Hello World' ,
'Your first post' ,
new User (
new UserId ( 1 ),