XSLTProcessor::__construct
Erzeugt ein neues XSLTProcessor-Objekt
&reftitle.description;
XSLTProcessor::__construct
Erzeugt ein neues XSLTProcessor-Objekt.
&reftitle.parameters;
&no.function.parameters;
&reftitle.examples;
Verwendung von XSLTProcessor
load($xsl_filename);
$xmldoc = new DOMDocument();
$xmldoc->load($xml_filename);
$xsl = new XSLTProcessor();
$xsl->importStyleSheet($xsldoc);
echo $xsl->transformToXML($xmldoc);
?>
]]>