how to get day number of the month in php code example
Example 1: php get day from date
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
Example 2: get month days in php
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);