如何将 Unix 时间戳转换回时间?
我有以下 Unix 时间戳。
1301982430 1301982430 1301981474
1301981466 1301981466 1301981066
1301981058 1301981058 1301980388
1301980373 1301980373 1301979082
1301978478 1301978478 1301978478
如何将其转换回人类友好的时间?
这似乎不起作用
strtotime($item->timestamp);
I have the following Unix timestamps.
1301982430 1301982430 1301981474
1301981466 1301981466 1301981066
1301981058 1301981058 1301980388
1301980373 1301980373 1301979082
1301978478 1301978478 1301978478
How do I convert it back to time that's human friendly?
This doesn't seem to work,
strtotime($item->timestamp);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
利用
DateTime
类。Make use of the
DateTime
Class.也许更好,因为时间必须是大写的!
Is perhaps better, because the hour has to be capital!
您可以使用 php date 函数来获取日期和时间。
You can use the php date function to get the date and time.
使用
date()
或strftime
。Use
date()
orstrftime
.使用 日期 函数。
如所述:
一些格式示例:
Use the date function.
As stated:
Some format examples:
日期函数
date function