PHP Doku:: Erzeugt ein neues XSLTProcessor-Objekt - xsltprocessor.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationXSLDie XSLTProcessor-KlasseXSLTProcessor::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

Die XSLTProcessor-Klasse

<<Die XSLTProcessor-Klasse

XSLTProcessor::getParameter>>

XSLTProcessor::__construct

(PHP 5)

XSLTProcessor::__constructErzeugt ein neues XSLTProcessor-Objekt

Beschreibung

XSLTProcessor::__construct ( void )

Erzeugt ein neues XSLTProcessor-Objekt.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Verwendung von XSLTProcessor

<?php

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

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

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

?>


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Martin
4.06.2009 12:02
The example above is a bit confusing because it uses the same variable ($doc) for two different things. I would rather write

<?php

$xsl
= new XSLTProcessor();
$xsldoc = new DOMDocument();
$xsldoc->load($xsl_filename);
$xsl->importStyleSheet($xsldoc);

$xmldoc = new DOMDocument();
$xmldoc->load($xml_filename);
echo
$xsl->transformToXML($xmldoc);

?>

[ Editor's note - thiago AT php DOT net: This note has improvements from Matthieu ]



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)