PHP Doku:: Transformierung in ein neues DOMDocument - xsltprocessor.transformtodoc.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

Die XSLTProcessor-Klasse

<<XSLTProcessor::setProfiling

XSLTProcessor::transformToURI>>

XSLTProcessor::transformToDoc

(PHP 5)

XSLTProcessor::transformToDocTransformierung in ein neues DOMDocument

Beschreibung

DOMDocument XSLTProcessor::transformToDoc ( DOMNode $doc )

Transformiert die Quell-DOMNode unter Verwendung des mittels XSLTProcessor::importStylesheet() importierten Stylesheets in ein neues DOMDocument.

Parameter-Liste

doc

Die zu verarbeitende DOMNode.

Rückgabewerte

Das erzeugte DOMDocument oder FALSE im Falle eines Fehlers bei der Verarbeitung.

Beispiele

Beispiel #1 Transformierung in ein DOMDocument

<?php

// Laden der XML/XSL-Quelldokomente
$xml = new DOMDocument;
$xml->load('collection.xml');

$xsl = new DOMDocument;
$xsl->load('collection.xsl');

// Prozessor instanziieren und konfigurieren
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // XSL Document importieren

echo trim($proc->transformToDoc($xml)->firstChild->wholeText);

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
franp at free dot fr
31.08.2006 2:16
In most cases if you expect XML (or XHTML) as output you better use transformToXML() directly. You gain better control over xsl:output attributes, notably omit-xml-declaration.

Instead of :
$proc = new XSLTProcessor();
$proc->importStylesheet($xsl);
$dom = $proc->transformToDoc($xml);
echo $dom->saveXML();

do use :
$proc = new XSLTProcessor();
$proc->importStylesheet($xsl);
$newXml = $proc->transformToXML($xml);
echo $newXml;

In the first case, <?xml version="1.0" encoding="utf-8"?> is added whatever you set the omit-xml-declaration while transformToXML() take the attribute into account.



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",...)