Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Axel Strembel  >  DOM Class  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example
Class: DOM Class
Transform XML classes using XSLT and DOM XML
Author: By
Last change:
Date: 2005-06-10 10:55
Size: 429 bytes
 

Contents

Class file image Download
<?
include_once('DOMClass.php');

$clase = new DOMClass;

// Incluyo el archivo XML
$clase->XmlFile "test.xml";

// Incluyo el archivo XSLT para aplicar la transformación (La salida es HTML)
$clase->XslFile "test.xslt";

// Aqui se hace la transformación (la clase muestra el resultado)
// Los parametros opcionales son para mostrar el XML y el XSLT en pantalla 
$clase->TransformFromXmlFile(truetrue);
?>