Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<XSLXSLTProcessor->getParameter()>
Last updated: Tue, 19 Sep 2006

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

?>




<XSLXSLTProcessor->getParameter()>
Last updated: Tue, 19 Sep 2006