Выборка первого и последнего дней месяца по дате (selecting the first, last days given date) (php)
Выборка 1-го дня и последнего дня месяца по дате (php)
<?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));
или
$first = date("Y-m-d", strtotime("first day of this month"));
$last = date("Y-m-d", strtotime("last day of this month"));
или
$date = new \DateTime('2021-02-05');
$first = $date->format("Y-m-01");
$last = $date->format("Y-m-t");
пример: https://3v4l.org/X6rO9
часть инфы взята отсюда https://stackoverflow.com/questions/7541938/how-to-get-the-first-and-last-days-of-a-given-month
часть инфы взята отсюда https://stackoverflow.com/questions/7541938/how-to-get-the-first-and-last-days-of-a-given-month
Comments