I created the following array manually (bottom), I wish to create it programmatically using only two strings which can be easily exploded (explode()).
$min_date = '2012-03-01 00:00:00';
$max_date = '2012-04-25 00:00:00';
I’ve already explode() the strings as well as found out how many months are between the two dates
$min_date = explode('-',$min_date);
$min_date['year'] = intval($min_date[0]);
$min_date['month'] = intval($min_date[1]);
$min_date['day'] = intval($min_date[2]);
$max_date = explode('-',$max_date);
$max_date['year'] = intval($max_date[0]);
$max_date['month'] = intval($max_date[1]);
$max_date['day'] = intval($max_date[2]);
$months_between = ($max_date['month'] - $min_date['month']) + 12 * ($max_date['year'] - $min_date['year']);
which returns 1
cal_days_in_month() function seems useful too, I just don’t know how…
$days_in_month = cal_days_in_month(CAL_GREGORIAN, $month, $year)
Here is the array I created manually!
$periods = array(
'0' => array(
'month'=>'march',
'week'=>'1',
'days'=>'4',
'readable'=>' Thurs Mar, 01, 2012 - Sun Mar, 04, 2012',
'created_at_min'=>'2012-03-01 00:00:00',
'created_at_max'=>'2012-03-04 24:00:00'
),
'1' => array(
'month'=>'march',
'week'=>'2',
'days'=>'7',
'readable'=>' Mon Mar, 05, 2012 - Sun Mar, 11, 2012',
'created_at_min'=>'2012-03-05 00:00:00',
'created_at_max'=>'2012-03-11 24:00:00'
),
'2' => array(
'month'=>'march',
'week'=>'3',
'days'=>'7',
'readable'=>' Mon Mar, 12, 2012 - Sun Mar, 18, 2012',
'created_at_min'=>'2012-03-12 00:00:00',
'created_at_max'=>'2012-03-18 24:00:00'
),
'3' => array(
'month'=>'march',
'week'=>'4',
'days'=>'7',
'readable'=>' Mon Mar, 19, 2012 - Sun Mar, 25, 2012',
'created_at_min'=>'2012-03-19 00:00:00',
'created_at_max'=>'2012-03-25 24:00:00'
),
'4' => array(
'month'=>'march',
'week'=>'5',
'days'=>'6',
'readable'=>' Mon Mar, 26, 2012 - Sun Mar, 31, 2012',
'created_at_min'=>'2012-03-26 00:00:00',
'created_at_max'=>'2012-03-31 24:00:00'
),
'5' => array(
'month'=>'april',
'week'=>'1',
'days'=>'1',
'readable'=>' Sun Apr, 1, 2012',
'created_at_min'=>'2012-04-01 00:00:00',
'created_at_max'=>'2012-04-01 24:00:00'
),
'6' => array(
'month'=>'april',
'week'=>'2',
'days'=>'7',
'readable'=>' Mon Apr, 2, 2012 - Sun Apr, 8, 2012',
'created_at_min'=>'2012-04-01 00:00:00',
'created_at_max'=>'2012-04-08 24:00:00'
),
'7' => array(
'month'=>'april',
'week'=>'3',
'days'=>'7',
'readable'=>' Mon Apr, 9, 2012 - Sun Apr, 15, 2012',
'created_at_min'=>'2012-04-09 00:00:00',
'created_at_max'=>'2012-04-15 24:00:00'
),
'8' => array(
'month'=>'april',
'week'=>'4',
'days'=>'7',
'readable'=>' Mon Apr, 16, 2012 - Sun Apr, 22, 2012',
'created_at_min'=>'2012-04-16 00:00:00',
'created_at_max'=>'2012-04-22 24:00:00'
),
'9' => array(
'month'=>'april',
'week'=>'5',
'days'=>'3',
'readable'=>' Mon Apr, 23, 2012 - Wed Apr, 25, 2012',
'created_at_min'=>'2012-04-16 00:00:00',
'created_at_max'=>'2012-04-25 00:00:00' // note last day timestamp needs to be 00:00:00
),
);
Is their anything that PHP offers that can be of extreme help before I dive into this?
$weeks = array(
'may' = array(1,2,3,4,5),
'april' = array(1,2,3,4,5),
);
Do something like this. You’ll get a an array like:
EDIT: Code updated so that weeks don’t span months.