xsltprocessor_transformToURI.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --TEST--
  2. Test the basics to function XSLTProcessor::transformToURI().
  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. <table>
  28. <xsl:for-each select="user">
  29. <tr><td>
  30. <xsl:value-of
  31. select="php:function('ucfirst',string(uid))"/>
  32. </td></tr>
  33. </xsl:for-each>
  34. </table>
  35. </body></html>
  36. </xsl:template>
  37. </xsl:stylesheet>
  38. EOB;
  39. $xmldoc = new DOMDocument('1.0', 'utf-8');
  40. $xmldoc->loadXML($xml);
  41. $xsldoc = new DOMDocument('1.0', 'utf-8');
  42. $xsldoc->loadXML($xsl);
  43. $proc = new XSLTProcessor();
  44. $proc->registerPHPFunctions();
  45. $proc->importStyleSheet($xsldoc);
  46. var_dump($proc->transformToURI($xsldoc, 'php://output'));
  47. ?>
  48. --EXPECTF--
  49. int(56)