Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人知道如何根据 php 中的给定日期计算日历周,例如 06.06.2013(格式类似于 2013-06-06)。是日历周 23。我整个上午都在寻找解决方案,但没有发现任何有用的信息。任何帮助或链接,将不胜感激。谢谢
利用date("W")
date("W")
echo date("W", strtotime('2013-06-06'));
看到它在行动
date('W')应该给你一年中的一周。RTM
date('W')
如果您没有时间作为 unix 时间戳,您可以strtotime()首先使用并将其作为第二个参数传递
strtotime()
前任。date('W',strtotime($my_time_string))
date('W',strtotime($my_time_string))
您可以在此处查看 PHP 手册
像这样:
$time = '2013-06-06'; $calendar_week = date('W', strtotime($time));