Николас
Новичок
если уже есть xslt, то смотри такое:
PHP:
<?php
$sourcefile = "xml file";
$stylesheetfile = "xsl file";
$xml = new DOMDocument();
$xml->load($sourcefile);
$xsl = new DOMDocument();
$xsl->load($stylesheetfile);
$xslt = new XsltProcessor();
$xslt-> importStylesheet ($xsl);
$result = $xslt->transformToDoc($xml);
echo $result->saveXML();
?>