仅当今天在特殊日期和特殊日期之间时,我才需要显示特殊价格,以下操作无效
<xsl:value-of select="$sepstart" />
<xsl:if test="special_from_date <=php:function('date','Y-m-d h:i:s') and php:function('date','Y-m-d h:i:s')>=special_to_date">
<xsl:value-of select="special_price"/>
</xsl:if>
<xsl:value-of select="$sepend" />
这里是一个特殊的例子,看起来像
from date:"2018-11-30 00:00:00"
to date:"2018-12-07 00:00:00"
我在做什么错了?