I'm trying to import a XSLT stylesheet, but still getting this error...
PHP:
//cadena original
$xsl = new \DOMDocument();
$xsl->load('storage/utils/cadenaoriginal_3_3.xslt');
// Crear el procesador XSLT que nos generará la cadena original con base en las reglas descritas en el XSLT
$proc = new \XSLTProcessor();
// Cargar las reglas de transformación desde el archivo XSLT.
$proc->importStyleSheet($xsl);
XSLT: url: http://www.sat.gob.mx/sitio_internet/cfd/3/cadenaoriginal_3_3/cadenaoriginal_3_3.xslt
Any idea? :( This is the XSLT used by the goberment, so, it shouldn't have anything wrong inside, but can someone see someting weird or so?