這篇文章主要介紹了Codeigniter通過SimpleXML將xml轉換成對象的方法,涉及Codeigniter操作XML文件的技巧,非常具有實用價值,需要的朋友可以參考下
本文實例講述了Codeigniter通過SimpleXML將xml轉換成對象的方法。分享給大家供大家參考。具體分析如下:
SimpleXML是一個php擴展,有了它可以非常容易的操作xml文件
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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程序設計有所幫助。