XSLT模板中的常规PHP代码,是否可能?

时间:2011-10-18 16:10:36

标签: php xml xslt

我想知道如果可以,我怎么能在我的XSLT模板中包含代码...我知道我可以使用<xsl:choose>但是这不能满足我的需求,我想添加函数,变量等。

<?xml version="1.0" encoding="utf-8"?>  
<xsl:stylesheet version="1.0"
xmlns:php="http://php.net/xsl"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 

<xsl:output method="html" encoding="UTF-8" indent="yes"/>  

<xsl:template match="BackgroundReportPackage">

<!--- here i would like to add code like ---->

if ($dateofcharge < 7) {
return '

<xsl:for-each select="Charge">
            <table class="special2" cellpadding="0">
                <tr class="tr-border-bottom">
                    <td class="front-td-text" valign="top">Charge ID: </td>
                    <td class="minimalec">
                    <xsl:value-of select="ChargeId"/>           
                    </td>
                </tr>

                <tr class="tr-border-bottom">
                    <td class="front-td-text" valign="top">Charge Type Classification: </td>
                    <td class="minimalec">
                    <xsl:value-of select="ChargeTypeClassification"/>
                    </td>
                </tr>                   

            </table>

';          
} else {
 do nothing
 }

 <!--- keep in mind that this code i've added is just for presentational purposes TO show you, how i want to use php code --->

</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

希望任何人都可以提供帮助!

2 个答案:

答案 0 :(得分:2)

当XSLT可以执行块时,没有真正的理由可以编写类似的模板。你可以看到的是

更改模板值和

在模板中使用PHP函数。这可能更有意义。

答案 1 :(得分:0)

不,你不能那样。 您可以包含来自外部命名空间的代码,这是您编写扩展函数的方法,但我怀疑您无法在PHP中执行它们,它们通常是预编译语言,因为您必须加载库才能执行此操作。

你需要达到什么目的。没有那么多你用XSL无法实现的东西,当然你不会有像你的例子那样微不足道的问题