(PHP 5, PHP 7)
XSLTProcessor::transformToDoc — Transforma para um DOMDocument
Transforma o node para um DOMDocument aplicando o stylesheet dado pelo método XSLTProcessor::importStylesheet().
doc
O node a ser transformado.
O resultante DOMDocument ou FALSE
em erro.
Exemplo #1 Transformando para DOMDocument
<?php
// Load the XML source
$xml = new DOMDocument;
$xml->load('collection.xml');
$xsl = new DOMDocument;
$xsl->load('collection.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
echo trim($proc->transformToDoc($xml)->firstChild->wholeText);
?>
O exemplo acima irá imprimir:
Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!