在 ruby 的 strftime 中,为什么 %P 是“am/pm”?并且%p是“AM/PM”。
这不是更令人困惑吗?难道不应该反过来这样更容易记住吗?
isn't that more confusing? Shouldn't it be the other way around so it's easier to remember?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个备忘单: http://cheat.errtheblog.com/s/strftime/
看来 Ruby 1.8之前没有 %P 选项,所以我认为当社区选择添加该“功能”时,他们选择使用 %p 来向后兼容,并为想要小写版本的用户添加 %P 选项。
不过,如果可以互换它们以避免混淆,也没什么坏处。
looking at this cheat sheet: http://cheat.errtheblog.com/s/strftime/
It seems that Ruby 1.8 didn't have the %P option before, so I think that when the community chose to add that "feature" in, they chose to use %p for backwards compatibility and added the %P option for users who wanted the lowercase version.
Still, it wouldn't have hurt if they were interchanged to avoid confusion.