Lines Matching refs:xsl
6 <?php extension_loaded('xsl') or die('skip xsl extension is not available'); ?>
19 $xsl = <<<EOB
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">
29 <xsl:for-each select="user">
31 <xsl:value-of
34 </xsl:for-each>
37 </xsl:template>
38 </xsl:stylesheet>
45 $xsldoc->loadXML($xsl);