如何获取给定月份的第一天和最后一天

新手上路,请多包涵

我想重写一个mysql查询,它使用month()和year()函数来显示某个月份的所有帖子,这些帖子作为’Ymd’参数格式进入我的函数,但我不知道我怎样才能得到给定月份日期的最后一天。

 $query_date = '2010-02-04';
list($y, $m, $d) = explode('-', $query_date);
$first_day = $y . '-' . $m . '-01';

原文由 dole doug 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 407
2 个回答

您可能想查看 strtotimedate 函数。

 <?php

$query_date = '2010-02-04';

// First day of the month.
echo date('Y-m-01', strtotime($query_date));

// Last day of the month.
echo date('Y-m-t', strtotime($query_date));

原文由 Francois Deschenes 发布,翻译遵循 CC BY-SA 3.0 许可协议

## Get Current Month's First Date And Last Date

echo "Today Date: ". $query_date = date('d-m-Y');
echo "<br> First day of the month: ". date('01-m-Y', strtotime($query_date));
echo "<br> Last day of the month: ". date('t-m-Y', strtotime($query_date));

原文由 PHP Kishan 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题