Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can get Monday this week with:

$monday = date_create()->modify('this Monday');

I would like to get with the same ease the 1st of this month. How can I achieve that?

Thanks

share|improve this question
Uh, I am in a trouble, John Conde answered the question I answered, but I forget to mention, that it needs to work on 5.2, so I will actually use Mr-sk's answer... – pihentagy Jan 20 '10 at 9:53

7 Answers

up vote 24 down vote accepted

Requires PHP 5.3 to work ("first day of" is introduced in PHP 5.3). Otherwise the example above is the only way to do it:

<?php
    $d = new DateTime('2010-01-19');
    $d->modify('first day of this month');
    echo $d->format('jS, F Y');
?>
share|improve this answer

Here is what I use to get the 1st day of the current month

date('Y-m-01');
share|improve this answer
1  
This is IMO by far the simplest and most readable way to solve this, if all you need is a string representation of the date. – Markus Amalthea Magnuson Aug 17 '12 at 11:23
Brilliant, simply brilliant! Thanks man! – The Sexiest Man in Jamaica Sep 24 '12 at 19:17
This worked like a charm for me. Thank you. – gvillavizar Nov 12 '12 at 18:54

Ugly, (and doesn't use your method call above) but works:

echo 'First day of the month: ' . date('m/d/y h:i a',(strtotime('this month',strtotime(date('m/01/y')))));   
share|improve this answer
out of the topic but how would you calculate the last day of the month under the same scenario. – LoneWOLFs Dec 10 '12 at 12:28

In php 5.2 you can use:

<? $d = date_create();
print date_create($d->format('Y-m-1'))->format('Y-m-d') ?>
share|improve this answer

You can do it like this:

$firstday = date_create()->modify('first day January 2010');
share|improve this answer

This is everything you need:

$week_start = strtotime('last Sunday', time());
$week_end = strtotime('next Sunday', time());

$month_start = strtotime('first day of this month', time());
$month_end = strtotime('last day of this month', time());

$year_start = strtotime('first day of January', time());
$year_end = strtotime('last day of December', time());

echo date('D, M jS Y', $week_start).'<br/>';
echo date('D, M jS Y', $week_end).'<br/>';

echo date('D, M jS Y', $month_start).'<br/>';
echo date('D, M jS Y', $month_end).'<br/>';

echo date('D, M jS Y', $year_start).'<br/>';
echo date('D, M jS Y', $year_end).'<br/>';
share|improve this answer

Currently I'm using this solution:

$firstDay = new \DateTime('first day of this month');
$lastDay = new \DateTime('last day of this month');

The only issue I came upon is that strange time is being set. I needed correct range for our search interface and I ended up with this:

$firstDay = new \DateTime('first day of this month 00:00:00');
$lastDay = new \DateTime('first day of next month 00:00:00');
share|improve this answer

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.