Mega Code Archive
Transforming XML with XSLT and PHP functions
$dom = new DOMDocument;
$dom->loadXML('');
$xsl = new DOMDocument;
$xsl->load('stylesheet.xsl');
$xslt = new XSLTProcessor();
$xslt->importStylesheet($xsl);
$xslt->registerPHPFunctions();
print $xslt->transformToXML($dom);
?>