strtotime 和“更好的可读性”
我是一个新手,正在用书来学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是对的。
他们对可读性的立场是时间在内部存储为可读的。
继续尝试
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 :)相反,请使用 strftime()
For the other way round use strftime()