Hello All
First question post, other than the usual introduction posts.
FYI: i am OKish with php, but have never had a need to do the below
I basically need to get every date in a given month, including the day of the week (i.e monday, etc).
Ideally so i am given an array of dates (i.e with something like "$dates_arr = $calendar_obj->getDatesForMonth($month = 9, $year = 2015);")
This is to build a kind of mini calendar.
i would have assumed there are some inbuilt php functions/classes for this, but am struggling to find them.
Can anyone tell me if there is anything i should be looking at, before i try to build my own class / extend DateTime, etc (as i don't think i need to reinvent the wheel)
I would be grateful if anyone could point me in the right direction