XSLTProcessor::importStylesheet(): compilation error – Php
please, can you help me with a problem in XML transform by XSLT in PHP? I have this code: $xml = new SimpleXMLElement(file_get_contents(DIR_WWW . '/xslt/test.xml')); $xsl = new DOMDocument(); $xsl->load(DIR_WWW . '/xslt/test.xslt'); $processor = new XSLTProcessor(); $processor->importStylesheet($xsl); $filepath = DIR_WWW…