$dom = new DOMDocument;$dom->loadXML('');$xsl = new DOMDocument;$xsl->load('stylesheet.xsl');$xslt = new XSLTProcessor(); $xslt->importStylesheet($xsl);$xslt->registerPHPFunctions(); print $xslt->transformToXML($dom);?>