前月の最初の日付と最後の日付を取得したい。phpで前月の最初の日付と最後の日付を取得するには?
$first_date = strtotime('first day of previous month', time());
$previous_month_first_date=date('Y-m-d', $first_date);
$previous_month_last_date=date('Y-m-d', strtotime('last day of previous month'));
日付と時刻は、[carbon](http://carbon.nesbot.com/docs)を使用してください。それは日付の時間を操作する多くの機能を持っています。 – Karan