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