php time return day month year from datetime code example
Example 1: php get start and end date of month and year
<?php
$query_date = '2010-02-04';
echo date('Y-m-01', strtotime($query_date));
echo date('Y-m-t', strtotime($query_date));
Example 2: get day of month php
cal_days_in_month(CAL_GREGORIAN, $month, $year)
echo (cal_days_in_month(CAL_GREGORIAN, 2, 2020));
function days_in_month($month, $year) {
return $month == 2 ? ($year % 4 ? 28 : ($year % 100 ? 29 : ($year % 400 ? 28 : 29))) : (($month - 1) % 7 % 2 ? 30 : 31);
}
echo (date('t', strtotime('2020-02-1')));