How to find first day of the next month and remaining days till this date with PHP

前端 未结 15 777
难免孤独
难免孤独 2020-12-08 14:36

How can I find first day of the next month and the remaining days till this day from the present day?

Thank you

15条回答
  •  失恋的感觉
    2020-12-08 14:58

    The easiest and quickest way is to use strtotime() which recognizes 'first day next month';

    $firstDayNextMonth = date('Y-m-d', strtotime('first day next month'));
    

提交回复
热议问题