Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
XSLTProcessor::__construct

XSLTProcessor::__construct

(no version information, might be only in CVS)

XSLTProcessor::__construct -- Creates a new XSLTProcessor object

Description

class XSLTProcessor {

__construct ( (void); )

}

Creates a new XSLTProcessor object.

Examples

Example 1. Creating an XSLTProcessor

<?php

$doc = new DOMDocument();
$xsl = new XSLTProcessor();

$doc->load($xsl_filename);
$xsl->importStyleSheet($doc);

$doc->load($xml_filename);
echo $xsl->transformToXML($doc);

?>

Ñ