如何在 PHP 中获取特定周的天数?

发布于 2024-11-03 06:27:12 字数 326 浏览 0 评论 0原文

可能的重复:
计算给定周数的星期几

在 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 技术交流群。

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

发布评论

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

评论(4

始终不够 2024-11-10 06:27:12

对于一个月中的几天,您可以使用 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

瀟灑尐姊 2024-11-10 06:27:12
$start = strtotime('this Sunday');
$finish = strtotime('this Saturday');

$days = array();

while ($start <= $finish) {
   $days[] = date('d-m', $start);
   $start += strtotime('+1 day', 0);
}

var_dump($days);

键盘

输出

array(7) {
  [0]=>
  string(5) "24-04"
  [1]=>
  string(5) "25-04"
  [2]=>
  string(5) "26-04"
  [3]=>
  string(5) "27-04"
  [4]=>
  string(5) "28-04"
  [5]=>
  string(5) "29-04"
  [6]=>
  string(5) "30-04"
}
$start = strtotime('this Sunday');
$finish = strtotime('this Saturday');

$days = array();

while ($start <= $finish) {
   $days[] = date('d-m', $start);
   $start += strtotime('+1 day', 0);
}

var_dump($days);

CodePad.

Output

array(7) {
  [0]=>
  string(5) "24-04"
  [1]=>
  string(5) "25-04"
  [2]=>
  string(5) "26-04"
  [3]=>
  string(5) "27-04"
  [4]=>
  string(5) "28-04"
  [5]=>
  string(5) "29-04"
  [6]=>
  string(5) "30-04"
}
别想她 2024-11-10 06:27:12

查看文档位于 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') and date('F').

酒几许 2024-11-10 06:27:12

我为你准备了一些东西:

// Prints: July 1, 2000 is on a Saturday
echo "July 1, 2000 is on a " . date("l", mktime(0, 0, 0, 7, 1, 2000));

你也可以这样做:

// out: July 1,2000 is on the 7th day
echo "July 1, 2000 is on the " . date("N", mktime(0, 0, 0, 7, 1, 2000)) ."th day";  

http://php.net/manual/ en/function.date.php
http://www.php.net/manual/en/function.mktime.php

I got somthing for you:

// Prints: July 1, 2000 is on a Saturday
echo "July 1, 2000 is on a " . date("l", mktime(0, 0, 0, 7, 1, 2000));

you can also do:

// out: July 1,2000 is on the 7th day
echo "July 1, 2000 is on the " . date("N", mktime(0, 0, 0, 7, 1, 2000)) ."th day";  

http://php.net/manual/en/function.date.php
http://www.php.net/manual/en/function.mktime.php

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