gpt4 book ai didi

datetime - 时间格式 - Coldfusion 9

转载 作者:行者123 更新时间:2023-12-04 16:29:37 25 4
gpt4 key购买 nike

我正在尝试在 Coldfusion 中创建一个包含毫秒的时间戳。

我的问题是我无法在任何地方找到允许我通过控制前导零来保持格式一致的代码。

这是我的格式:

<cfoutput> 
<cfset todayDate = #Now()#>
<ul>
<li>#TimeFormat(todayDate, "HH:mm:ssl")# </li>
</ul>
</cfoutput>

我只需要诸如“HH:mm:ssll”之类的东西或其他一些方法来确保我始终拥有 9 位时间戳。

最佳答案

带前导零的毫秒数?

<li>
#TimeFormat(todayDate, "HH:mm:ss")##NumberFormat(TimeFormat(todayDate, "l"),"000")#
</li>

仅供引用, l最多 3 位数字。所以我不确定你的 9 位数限制。

关于datetime - 时间格式 - Coldfusion 9,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11550995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com