Quick way to get the number of days in a month with PHP

David Carr

Tutorials PHP & MySQL

I’m building a php calendar and need to know the total number of days in a month in the past I've used: 

echo cal_days_in_month(CAL_GREGORIAN, 2, 2017);

For the current month you can use:

echo date('t');

Or for a more a date based approach:

echo date('t', strtotime('2017-02-01')); 

 

Fathom Analytics $10 discount on your first invoice using this link

Help support the blog so that I can continue creating new content!

Sponsor

Fathom Analytics $10 discount on your first invoice using this link

Subscribe to my newsletter

Subscribe and get my books and product announcements.

© 2006 - 2024 DC Blog. All code MIT license. All rights reserved.