XSLTProcessor::__construct
(No version information available, might be only in CVS)
XSLTProcessor::__construct — Crée un nouvel objet XSLTProcessor
Description
XSLTProcessor
__construct
( void
)
Crée un nouvel objet XSLTProcessor.
Liste de paramètres
Cette fonction ne contient aucun paramètre.
Valeurs de retour
Aucune valeur n'est retournée.
Exemples
Exemple #1 Exemple avec XSLTProcessor
<?php
$doc = new DOMDocument();
$xsl = new XSLTProcessor();
$doc->load($xsl_filename);
$xsl->importStyleSheet($doc);
$doc->load($xml_filename);
echo $xsl->transformToXML($doc);
?>
XSLTProcessor::__construct
There are no user contributed notes for this page.
