1

这是我的行。我有 24 行 24 小时。我在 xslt 中创建了一个循环。

<xsl:variable name="n-rows" select="24"/>

<xsl:template match="/">
  <html>
    <head>...</head>
    <body>
      <table>
        <tr>
          <xsl:call-template name="td-recursive"/>
        </tr>
      </table>
    </body>
  </html>
</xsl:template>

<xsl:template name="td-recursive">
  <xsl:param name="index" select="1"/>
  <td>
    <xsl:value-of select="$index"/>
  </td>
  <xsl:if test="$index &lt; $n-rows">
    <xsl:call-template name="td-recursive">
      <xsl:with-param name="index" select="$index + 1"/>
    </xsl:call-template>
  </xsl:if>
</xsl:template>

但在这儿

<xsl:value-of select="$index"/>

我想写小时而不是像 00:00、01:00 到 23:00 这样的数字

如何使用 PHP 在 XSLT 中编写小时数。

4

1 回答 1

1

尝试:

<xsl:value-of select="concat(format-number($index,'00'),':00')"/>

您的循环从 1 到 24,如果您希望第一个小时为 00:00,最后一个小时为 23:00,您还需要减去 1:

<xsl:value-of select="concat(format-number($index - 1,'00'),':00')"/>

或修改循环

于 2013-08-19T14:53:26.643 回答