PHP:strftime()、date() 或 DateTime,哪个更好?

发布于 2024-11-06 04:35:57 字数 299 浏览 1 评论 0原文

我很想知道在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩心不撩汉 2024-11-13 04:35:57

我想你会发现 date()strftime() 使用更广泛

date() 只能返回月/日名称为英语,无法为您提供其他语言的翻译。

性能影响应该可以忽略不计。

如果您决定采用日期路线,我强烈建议您使用 DateTime ,这使得大多数与日期和时间相关的操作比使用原始过程函数更容易。

I think you'll find date() is more widely used than strftime()

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.

奢望 2024-11-13 04:35:57

在 PHP 中使用有什么优点
strftime() 优于 date()

日期手册页

要格式化其他语言的日期,
您应该使用 setlocale()
strftime() 函数
日期()。

is any advantage in PHP of using
strftime() over date()

From the date manual page:

To format dates in other languages,
you should use the setlocale()
and strftime() functions instead
of date().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文