How can I print (echo) the days of an unknown month if month and year are parameters?

Thank you.

link|improve this question

unknown month if month : part is not clear. Are you looking for a way to find number of days in a given mm/yyyy ? – codaddict Oct 7 '10 at 16:42
Yup, I want to know how many days it has so I can run a for and show them from 1 to max_days_in_that_month. – Francisc Oct 7 '10 at 16:49
feedback

1 Answer

up vote 1 down vote accepted

To get the number of days in a given month of a given year you can use cal_days_in_month

echo cal_days_in_month(CAL_GREGORIAN, 10, 2010); // prints 31
link|improve this answer
Haha, brilliant. Thank you. I need this to improvise a special kind of calendar that only shows some days etc. – Francisc Oct 7 '10 at 16:44
PHP really has a function for everything, doesn't it? i would have suggested using the date function and using the days-in-month format char... but this is easier. – Mark Oct 7 '10 at 21:02
Yeah, it seems it does, haha. – Francisc Oct 9 '10 at 1:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.