3v4l.org

run code in 300+ PHP versions simultaneously
<?php $year = 2023; $firstDayOfYear = strtotime("first sunday january " . $year); //first Sunday of year $nextSunday = strtotime('sunday', $firstDayOfYear); $nextSaturday = strtotime('saturday', $nextSunday); $i = 0; while (date('Y', $nextSunday) == $year) { $filenames[$i] = date('M. j, Y', $nextSunday) . ' to ' . date('M. j, Y', $nextSaturday); $nextSaturday = strtotime('+1 week', $nextSaturday); $nextSunday = strtotime('+1 week', $nextSunday); $i++; } echo $filenames[0];
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.24, 8.3.0 - 8.3.12
Jan. 8, 2023 to Jan. 14, 2023

preferences:
77.91 ms | 407 KiB | 5 Q