XML/XSLT stylesheet/day from date

Материал из Web эксперт
Версия от 11:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Get day from date with day-from-date() and current-date()

   <source lang="xml">

<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="2.0"

 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:template match="/">
   <html>
     <body>

Date and Time

       The day of the month is:
       <xsl:value-of select="day-from-date(current-date())" />
       
</body> </html> </xsl:template>

</xsl:stylesheet> Output: <html>

  <body>

Date and Time

             The day of the month is:
             10
</body>

</html>

</source>