php extract month and year from date

92

$time=strtotime($dateValue);
$month=date("F",$time);
$year=date("Y",$time);
$time=strtotime($dateValue);
$month=date("F",$time);
$year=date("Y",$time);
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);

Comments

Submit
0 Comments