Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for the best way to get the first and the last day of a last month. I use them for make SQL queries to get stats of last month.

I think that this is the best way, more optimized but not more comprensive, anyone have another way to do the same?

    $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"))));

Thanks!!

share|improve this question
possible duplicate of PHP last day of the month – DaveRandom Mar 16 '12 at 10:33
have you tried strtotime? – Your Common Sense Mar 16 '12 at 10:33
-1 for the [optimization] – Your Common Sense Mar 16 '12 at 10:34
This post is for get the first and the last day of the PAST month :) a little different – aaronroman Mar 16 '12 at 10:36

4 Answers

up vote 8 down vote accepted

Last day of the previous month:

date("Y-m-d", mktime(0, 0, 0, date("m"), -1, date("Y")));

First day of the previous month:

date("Y-m-d", mktime(0, 0, 0, date("m")-1, 1, date("Y")));

share|improve this answer
Nice answer; if the current month is 01 (January) date() will decrement the year by one and wrap the month back round to 12, works great. Thanks! – javano Mar 20 '12 at 16:50

In PHP 5.3, you can use the DateTime class :

<?php

$month_ini = new DateTime("first day of last month");
$month_end = new DateTime("last day of last month");

echo $month_ini->format('Y-m-d'); // 2012-02-01
echo $month_end->format('Y-m-d'); // 2012-02-29
share|improve this answer

If you're doing this for the purpose of a MySQL query, have you considered using the MONTH function, e.g.

SELECT [whatever stats you're after] FROM table
WHERE MONTH(date_field) = 12 and YEAR(date_field) = 2011

This would get your stats for December. If you start to experience performance problems and the historical data doesn't change, you might want to denormalise the data into an aggregate table (rolled up by the smallest increment you need, e.g. daily/hourly/monthly etc).

share|improve this answer
and what if there are rows from December 2010 and from December 2011? How do you distinguish them? – Bazzz Mar 16 '12 at 10:41
@Bazzz Doh! Good spot, have added the equivalent YEAR filter to it (although if you followed the link I provided this should have been pretty obvious!) – liquorvicar Mar 16 '12 at 10:44

you can do this in MySQL:

WHERE `DateAndTime` >= '2012-02-01 00:00:00'
AND `DateAndTime` < '2012-03-01 00:00:00'
share|improve this answer
Thanks but is more slow do this in mysql :( thanks, I need optimization – aaronroman Mar 16 '12 at 10:41
put an index on the DateAndTime column. I'd say you won't get any faster than that. – Bazzz Mar 16 '12 at 10:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.