Unix 时间以周为单位
如何轻松地将 Unix 时间转换为周、天或月?
例如,我在unix时间中得到604800
,这意味着那是1周,3600
是1天等等。
我知道这可以使用除法来完成,但我想知道是否有任何现成的功能。
How can I easy convert a unix time to a weeks, days or months?
For example I got 604800
in unix time, which means thats 1 week, 3600
is 1 day etc.
I know this can be done using divisions, but I wonder if there is any ready-function for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从时间戳中,您可以使用 date() 获取很多信息。例如:
From a timestamp, you can get much information using date(). For example:
CakePHP 对此有很好的实现,请查看 http://api13.cakephp.org /view_source/time-helper/#line-463
CakePHP have nice implementation of this, look at http://api13.cakephp.org/view_source/time-helper/#line-463
如果您尝试将秒数转换为周数等,请使用 date() 函数
If you are trying to convert seconds to a week number and so on use date() function