Would like to retrieve all days and date for a given month. Have this currently which shows all the days for the current month, but how do I parse in a specified month instead?<
try this
$month = "05"; $year = "2014"; $start_date = "01-".$month."-".$year; $start_time = strtotime($start_date); $end_time = strtotime("+1 month", $start_time); for($i=$start_time; $i<$end_time; $i+=86400) { $list[] = date('Y-m-d-D', $i); } print_r($list);
See Demo