Unix 时间以周为单位

发布于 2024-12-11 01:21:31 字数 144 浏览 0 评论 0原文

如何轻松地将 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 技术交流群。

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

发布评论

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

评论(3

來不及說愛妳 2024-12-18 01:21:31

从时间戳中,您可以使用 date() 获取很多信息。例如:

$year = date('Y', $timestamp);
$dayOfYear = date('z', $timestamp);
$weekOfYear = date('W', $timestamp);

From a timestamp, you can get much information using date(). For example:

$year = date('Y', $timestamp);
$dayOfYear = date('z', $timestamp);
$weekOfYear = date('W', $timestamp);
野味少女 2024-12-18 01:21:31

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

折戟 2024-12-18 01:21:31

如果您尝试将秒数转换为周数等,请使用 date() 函数

If you are trying to convert seconds to a week number and so on use date() function

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