php 获取指定月份的最后一天
时间: 2023-08-21 09:05:03 浏览: 135
PHP根据月份获取周日期范围
你可以使用 PHP 的 date 和 strtotime 函数来获取指定月份的最后一天。下面是示例代码:
```php
$month = 8; // 指定月份,这里为8月份
$lastDay = date('Y-m-t', strtotime("{$month}/1/2021"));
echo $lastDay; // 输出结果为 2021-08-31
```
上述代码中,我们首先指定了月份为8月份,然后使用 strtotime 函数将其转换为日期格式。接着,我们使用 date 函数将日期格式转换为指定格式(这里为 Y-m-t,t 表示该月份的最后一天)。最后输出结果即可获取指定月份的最后一天。
阅读全文