gpt4 book ai didi

MySQL DATE_FORMAT 重复说明符

转载 作者:可可西里 更新时间:2023-11-01 07:37:11 25 4
gpt4 key购买 nike

有人可以解释一下 difference between the %h and %I ?两者都被描述为“小时 (01..12)” 并且与秒 %s%S 相同?这背后有什么“奇怪”的功能吗?复制它的原因是什么?

最佳答案

%h 和 %I,以及 %s 和 %S 是相同的。

在代码中它看起来像这样:

case 'h':
case 'I':
hours_i= (l_time->hour%24 + 11)%12+1;
length= (uint) (int10_to_str(hours_i, intbuff, 10) - intbuff);
str->append_with_prefill(intbuff, length, 2, '0');
break;

case 'S':
case 's':
sprintf(intbuff,"%02d",l_time.second);
str->append(intbuff);
break;

即使早在 2003 年 6 月 20 日发布的版本 3.23.57(我能找到的最旧的源存档)中,它们也是相同的。

关于MySQL DATE_FORMAT 重复说明符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23048587/

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