這篇文章主要介紹了Codeigniter通過SimpleXML將xml轉(zhuǎn)換成對象的方法,涉及Codeigniter操作XML文件的技巧,非常具有實用價值,需要的朋友可以參考下
本文實例講述了Codeigniter通過SimpleXML將xml轉(zhuǎn)換成對象的方法。分享給大家供大家參考。具體分析如下:
SimpleXML是一個php擴展,有了它可以非常容易的操作xml文件
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;
}
}
希望本文所述對大家的基于Codeigniter框架的php程序設(shè)計有所幫助。
更多信息請查看IT技術(shù)專欄