【发布时间】:2012-04-01 21:33:08
【问题描述】:
我正在寻找获得上个月第一天和最后一天的最佳方式。我使用它们进行 SQL 查询以获取上个月的统计信息。
我认为这是最好的方法,更优化但不是更全面,有人有其他方法吗?
$month_ini = date("Y-m-d", mktime(0, 0, 0, date("m", strtotime("-1 month")), 1, date("Y", strtotime("-1 month"))));
$month_end = date("Y-m-d", mktime(0, 0, 0, date("m", strtotime("-1 month")), date("t", strtotime("-1 month")), date("Y", strtotime("-1 month"))));
谢谢!!
【问题讨论】:
-
这篇文章是为了获取过去一个月的第一天和最后一天 :) 有点不同
标签: php mysql optimization date