forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 26
XML helper
World Wide Web Server edited this page Jul 4, 2012
·
6 revisions
Category:Helper::Community | Category:Helper::XML
[h3]XML helper for CodeIgniter[/h3]
Four methods to easily generate XML [url=http://maestric.com/en/doc/php/codeigniter_xml]Download and documentation[/url]
Example [code] $this->load->helper('xml');
$dom = xml_dom(); $book = xml_add_child($dom, 'book');
xml_add_child($book, 'title', 'Hyperion');
$author = xml_add_child($book, 'author', 'Dan Simmons');
xml_add_attribute($author, 'birthdate', '1948-04-04');
xml_print($dom); [/code]
generates
[code] <?xml version="1.0"?> <title>Hyperion</title> Dan Simmons [/code]
Jérôme Jaglale