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
|
|
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:
|
|||
|
|
|
Here is what I use to get the 1st day of the current month
|
|||||||||
|
|
Ugly, (and doesn't use your method call above) but works:
|
|||
|
|
In php 5.2 you can use:
|
|||
|
|
|
You can do it like this:
|
|||
|
|
|
This is everything you need:
|
|||
|
|
|
Currently I'm using this solution:
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:
|
|||
|
|