|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-12-02 11:44 UTC] mike@php.net
-Type: Bug
+Type: Feature/Change Request
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 21:00:01 2025 UTC |
Description: ------------ When procesing one XSLT stylesheet that try to import multiple XSTL stylesheets displays only the last one. Test script: --------------- $xslDoc = new DOMDocument(); $xslDoc->load("XML/index.xsl"); $xmlDoc = new DOMDocument(); $xmlDoc->load("XML/index.xml"); $proc = new XSLTProcessor(); $proc->importStylesheet($xslDoc); echo $proc->transformToXML($xmlDoc); Expected result: ---------------- to import more then one XSLT stylesheet Actual result: -------------- display only the last XSLT stylesheet