这是我的行。我有 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 < $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 中编写小时数。