2

是否可以在 XSLT 中获取上个月的最后一天?我找到了这个函数:http ://www.xsltfunctions.com/xsl/functx_last-day-of-month.html但我不知道如何使用它来获取上个月。

4

1 回答 1

4

使用

current-date()
  - xs:dayTimeDuration(concat('P', day-from-date(current-date()), 'D'))

这会产生(在 2012 年 5 月的任何一天进行评估时):

  2012-04-30-07:00
于 2012-05-07T14:30:35.863 回答