XML + Xslt -> Xml with PHP
- by rokdd
Hi,
I know that there are really a mass of XML XSLT php merging threads at SO. But php specific i could not found what might my problem:
$xml = new DOMDocument;
$xml-load("f.xml");
$xsl = new DOMDocument;
$xsl-load('test.xsl');
// init and configure processor
$proc = new XSLTProcessor;
$proc-importStyleSheet($xsl); // import xsl document…