xsltprocessor_transformToDoc.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --TEST--
  2. Test the basics to function XSLTProcessor::transformToDoc().
  3. --CREDITS--
  4. Rodrigo Prado de Jesus <royopa [at] gmail [dot] com>
  5. --SKIPIF--
  6. <?php extension_loaded('xsl') or die('skip xsl extension is not available'); ?>
  7. --FILE--
  8. <?php
  9. $xml = <<<EOB
  10. <allusers>
  11. <user>
  12. <uid>royopa</uid>
  13. </user>
  14. </allusers>
  15. EOB;
  16. $xsl = <<<EOB
  17. <?xml version="1.0" encoding="UTF-8"?>
  18. <xsl:stylesheet version="1.0"
  19. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  20. xmlns:php="http://php.net/xsl">
  21. <xsl:output method="html" encoding="utf-8" indent="yes"/>
  22. <xsl:template match="allusers">
  23. <html><body>
  24. <h2>Users</h2>
  25. <table>
  26. <xsl:for-each select="user">
  27. <tr><td>
  28. <xsl:value-of
  29. select="php:function('ucfirst',string(uid))"/>
  30. </td></tr>
  31. </xsl:for-each>
  32. </table>
  33. </body></html>
  34. </xsl:template>
  35. </xsl:stylesheet>
  36. EOB;
  37. $xmldoc = new DOMDocument('1.0', 'utf-8');
  38. $xmldoc->loadXML($xml);
  39. $xsldoc = new DOMDocument('1.0', 'utf-8');
  40. $xsldoc->loadXML($xsl);
  41. $proc = new XSLTProcessor();
  42. $proc->registerPHPFunctions();
  43. $proc->importStyleSheet($xsldoc);
  44. var_dump($proc->transformToDoc($xmldoc)->firstChild->tagName);
  45. ?>
  46. --EXPECT--
  47. string(4) "html"