PHP:strftime()、date() 或 DateTime,哪个更好?
我很想知道在 PHP 中使用 strftime()
相对于 date()
是否有任何优势,反之亦然。
我下载的一个类使用了strftime()
。但是,由于它在某些系统上不支持所有时间格式,因此我想将其更改为使用 date()
。我想知道使用其中一种与另一种相比是否有任何重大差异或优势。
strftime()
仅支持该服务器 c 库支持的日期格式这一事实怎么样? date()
有类似的限制吗?
I am curious to know if there is any advantage in PHP of using strftime()
over date()
or vice versa.
A class I downloaded used the strftime()
. However, since it does not support all time formats on some systems, I want to change it to use date()
instead. I was wondering if there are any major differances or advantages in using one over the other.
What about the fact that strftime()
only supports date formats that are supported by that servers c library? Does date()
have any similar restrictions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你会发现
date()
比strftime()
使用更广泛date()
只能返回月/日名称为英语,无法为您提供其他语言的翻译。性能影响应该可以忽略不计。
如果您决定采用日期路线,我强烈建议您使用
DateTime
,这使得大多数与日期和时间相关的操作比使用原始过程函数更容易。I think you'll find
date()
is more widely used thanstrftime()
date()
is only able to return month/day names in English and won't be able to give you translations for other languages.The performance implications should be negligible.
If you decide to go the date route I'd really recommend using
DateTime
which makes most date and time related operations easier than using the original procedural functions.从日期手册页:
From the date manual page: