get month from datetime php code example
Example 1: datetime get month php
$dateTime = new DateTime();
$month = $dateTime->format('m');
Example 2: get month from database php
echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));
Example 3: get month days in php
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);