Part of the EllisLab Network
x
 
Create New Page
 View Previous Changes    ( Last updated by Jérôme Jaglale )

XML helper

Category:Helper -> Community | Category:Helper -> XML

XML helper for CodeIgniter

Four methods to easily generate XML
Download and documentation


Example

$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); 

generates

<?xml version="1.0"?>
<book>
  <
title>Hyperion</title>
  <
author birthdate="1948-04-04">Dan Simmons</author>
</
book


Jérôme Jaglale

Categories: