loop through months and year PHP

$start = $month = strtotime('2021-02-01');
$end = strtotime('2021-05-01');
while($month < $end)
{
     echo date('F Y', $month), PHP_EOL;
     $month = strtotime("+1 month", $month);
}