Skip to Main Content
PHP 5 Kochbuch, Third Edition
book

PHP 5 Kochbuch, Third Edition

by David Sklar, Adam Trachtenberg, Carsten Lucke, Matthias Brusdeylins, Ulrich Speidel, Stephan Schmidt
September 2009
Intermediate to advanced content levelIntermediate to advanced
912 pages
48h 11m
German
O'Reilly Verlag
Content preview from PHP 5 Kochbuch, Third Edition

14.9 XML mit XSLT transformieren

Problem

Sie haben ein XML-Dokument und ein XSL-Stylesheet. Sie möchten das Dokument mit XSLT transformieren und das Ergebnis ausgeben. Auf diese Weise können Sie Stylesheets auf Ihre Daten anwenden und unterschiedliche Versionen Ihrer Inhalte für verschiedene Medien erzeugen.

Lösung

Verwenden Sie die XSL-Erweiterung zu PHP:

// XML-Dokument laden.
$xml = new DOMDocument;
$xml->load('data.xml');

// XSL-Stylesheet laden.
$xsl = new DOMDocument;
$xsl->load('stylesheet.xsl');

// Neuen XSLT-Prozessor erzeugen und Stylesheet einbinden.
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);

$ergebnis = $proc->transformToXML($xml);
if ($ergebnis === false) {
    die('Transformation nicht möglich');
}
print $ergebnis;

Der transformierte ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PHP programmieren unter Windows

PHP programmieren unter Windows

Arno Hollosi
CSS Kochbuch, 3rd Edition

CSS Kochbuch, 3rd Edition

Joergen Lang, Christopher Schmitt

Publisher Resources

ISBN: 9783868993271Purchase book