xsltprocessor_transformToXML.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --TEST--
  2. Test the basics to function XSLTProcessor::transformToXml().
  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>bob</uid>
  13. </user>
  14. <user>
  15. <uid>joe</uid>
  16. </user>
  17. </allusers>
  18. EOB;
  19. $xsl = <<<EOB
  20. <?xml version="1.0" encoding="UTF-8"?>
  21. <xsl:stylesheet version="1.0"
  22. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  23. xmlns:php="http://php.net/xsl">
  24. <xsl:output method="html" encoding="utf-8" indent="yes"/>
  25. <xsl:template match="allusers">
  26. <html><body>
  27. <h2>Users</h2>
  28. <table>
  29. <xsl:for-each select="user">
  30. <tr><td>
  31. <xsl:value-of
  32. select="php:function('ucfirst',string(uid))"/>
  33. </td></tr>
  34. </xsl:for-each>
  35. </table>
  36. </body></html>
  37. </xsl:template>
  38. </xsl:stylesheet>
  39. EOB;
  40. $xmldoc = new DOMDocument('1.0', 'utf-8');
  41. $xmldoc->loadXML($xml);
  42. $xsldoc = new DOMDocument('1.0', 'utf-8');
  43. $xsldoc->loadXML($xsl);
  44. $proc = new XSLTProcessor();
  45. $proc->registerPHPFunctions();
  46. $proc->importStyleSheet($xsldoc);
  47. var_dump($proc->transformToXML($xmldoc));
  48. ?>
  49. --EXPECT--
  50. string(135) "<html xmlns:php="http://php.net/xsl"><body>
  51. <h2>Users</h2>
  52. <table>
  53. <tr><td>Bob</td></tr>
  54. <tr><td>Joe</td></tr>
  55. </table>
  56. </body></html>
  57. "