如何在xslt中获取日期差异

时间:2013-05-13 12:11:37

标签: xslt xslt-2.0

我的架构是:

<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" xmlns:fn="http://www.w3.org/2005/xpath-functions">

我想在两个日期之间找到区别。

毫无头绪。

1 个答案:

答案 0 :(得分:3)

获取日期差异的示例是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">

 <xsl:param name="currentDate" select="current-date()"/>
  <xsl:param name="yesterdayDate" select="'2013-05-12'"/>

  <xsl:template match="/">
    <xsl:value-of select="$currentDate - xs:date($yesterdayDate)"/><!-- Result in duration  -->
  </xsl:template>

</xsl:stylesheet>