PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Raj Kumar Trivedi   XML-2-Array   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example File
Class: XML-2-Array
Parse a XML document and build an array structure
Author: By
Last change:
Date: 14 years ago
Size: 179 bytes
 

Contents

Class file image Download
<?php
include('xml2array.inc.php');
$xmlArray = new AWS_XmlToArray('demo.xml');
$xml2Array = $xmlArray->createArray();
echo
"<pre>";
   
print_r($xml2Array);
echo
"</pre>";
?>