(PHP 5, PHP 7)
XSLTProcessor::transformToURI — Transforma para URI
Transforma o node para uma URI aplicando o stylesheet dado pelo método XSLTProcessor::importStylesheet().
doc
O documento transformado.
uri
Retorna o número de bytes escrito ou FALSE
se um erro ocorrer.
Exemplo #1 Transformando para um arquivo HTML
<?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
$proc->transformToURI($xml, 'file:///tmp/out.html');
?>