CodeIgniter the method of converting XML into an object through SimpleXML, CodeIgniter
The example in this article describes the method by which CodeIgniter transforms XML into objects through SimpleXML. Share to everyone for your reference. The specific analysis is as follows:
SimpleXML is a php extension that has the ability to manipulate XML files very easily
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;}}
It is hoped that this article will be helpful to everyone's PHP programming based on CodeIgniter framework.
http://www.bkjia.com/PHPjc/970862.html www.bkjia.com true http://www.bkjia.com/PHPjc/970862.html techarticle CodeIgniter The method of transforming XML into an object through SimpleXML, CodeIgniter This article describes the CodeIgniter method of converting XML to an object by SimpleXML. Share to everyone for your reference. ...