计算日历周php

时间:2013-06-06 13:19:00

标签: php date

如果有人知道如何根据php中的给定日期计算日历周,例如06.06.2013(格式如此2013-06-06)。是第23周的日历。我整个上午都在寻找解决方案,没有发现任何有用的东西。任何帮助或链接,任何事情都将不胜感激。谢谢

3 个答案:

答案 0 :(得分:13)

使用date("W")

echo date("W", strtotime('2013-06-06'));

See it in action

答案 1 :(得分:8)

date('W')应该给你一年中的一周。的 RTM

如果你没有时间作为unix时间戳,你可以先使用strtotime()并将其作为第二个参数传递

离。 date('W',strtotime($my_time_string))

You can see the PHP manual here

答案 2 :(得分:0)

像这样:

$time = '2013-06-06';
$calendar_week = date('W', strtotime($time));