php 使用Codeigniter 通过 SimpleXML将xml转换成对象示例
内容摘要
这篇文章主要为大家详细介绍了php 使用Codeigniter 通过 SimpleXML将xml转换成对象示例,具有一定的参考价值,可以用来参考一下。
对php Codeigniter 通过 SimpleXML将xml转换
对php Codeigniter 通过 SimpleXML将xml转换
文章正文
这篇文章主要为大家详细介绍了php 使用Codeigniter 通过 SimpleXML将xml转换成对象示例,具有一定的参考价值,可以用来参考一下。
对php Codeigniter 通过 SimpleXML将xml转换成对象对此感兴趣的朋友,看看idc笔记做的技术笔记!SimpleXML 是一个php扩展,有了它可以非常容易的操作xml文件
/**
* php Codeigniter 通过 SimpleXML将xml转换成对象
*
* @param
* @arrange 512-笔记网: www.512Pic.com
**/
class CI_ManipulateXML
{
var $xml='';
function CI_ManipulateXML($xmlcontent)
{
$this->xml=$xmlcontent;
}
function ConvertXML() {
try {
$xmlobject = new SimpleXMLElement($this->xml);
if ($xmlobject == false) {
return false;
}
}
catch (Exception $e) {
return false;
}
return $xmlobject;
}
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 使用Codeigniter 通过 SimpleXML将xml转换成对象示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释