如何在 PHP 中获取特定周的天数?
可能的重复:
计算给定周数的星期几
在 PHP 中,您可以使用 'date('W');' 获取周数它将返回ISO-8601 一年中的周数
现在我如何获取特定周和月的天数?
更新: 例如,我知道“2011 年第 12 周星期一”,并且想要获取“3 月 31 日”
Possible Duplicate:
Calculating days of week given a week number
In PHP you can get the number of week with 'date('W');' and it will return ISO-8601 week number of year
Now how I can get the days of an specific week and the month(s) ?
Update:
For example I know 'Monday the 12th week of 2011' and want to get '31st March'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于一个月中的几天,您可以使用 cal_days_in_month 和对于指定周内的几天,您可以检查以下问题:计算给定周数的星期几
For days in a month you can use cal_days_in_month and for days in a specified week you can check out the following question: Calculating days of week given a week number
键盘。
输出
CodePad.
Output
查看文档位于 http://php.net/manual/en/function.date。 php
我认为你想要
date('d')
和date('F')
。Check out the docs at http://php.net/manual/en/function.date.php
I think you want
date('d')
anddate('F')
.我为你准备了一些东西:
你也可以这样做:
http://php.net/manual/ en/function.date.php
http://www.php.net/manual/en/function.mktime.php
I got somthing for you:
you can also do:
http://php.net/manual/en/function.date.php
http://www.php.net/manual/en/function.mktime.php