check date to monthe in php code example
Example 1: php grab month from date
$month = date("m",strtotime($mydate));
Example 2: datetime get month php
$dateTime = new DateTime();
$month = $dateTime->format('m');
Example 3: get month days in php
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);
Example 4: how to get match date and month in php
date('m',strtotime('2018-06-30' )) == date('m');