strtotime 和“更好的可读性”

发布于 2024-11-10 07:57:12 字数 238 浏览 0 评论 0原文

我是一个新手,正在用书来学习 Yii php 框架。它有这行代码,书上解释说他们花时间格式化日期以提高可读性

$lastLogin = strtotime($user->last_login_time);

但是,通过查看手册,我认为 strtotime 的输出是一个 unix 时间戳。如果这是正确的,那么如何才能提高可读性呢?

我错过了什么吗?

I'm a newbie using a book to learn the Yii php framework. It has this line of code and the book explains that they have taken the time to format the date for better readability

$lastLogin = strtotime($user->last_login_time);

However, from looking at the manual, I thought that the output of strtotime is a unix timestamp. If that's correct, how could that be better readability?

Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

∞琼窗梦回ˉ 2024-11-17 07:57:12

你是对的。

他们对可读性的立场是时间在内部存储为可读的。

继续尝试 print_r($user); 看看会发生什么:)

You are correct.

Their stance on readability is that the time is stored internally as readable.

Go on and try print_r($user); and see what happens :)

早乙女 2024-11-17 07:57:12

相反,请使用 strftime()

For the other way round use strftime()

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