3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = strtotime(date('2020-06-01 12:00')); for($x = 1; $x<=10; $x++) // increment $x until 10 { $period = $start - ($x * 1209600); // 1209600 is equivalent to 14 days. Multiply by $x $period_end = date('Y-m-d H:i', strtotime(date('Y-m-d H:i', $period). ' + 13 days')); echo date('Y-m-d H:i', $period) . " - " . $period_end ."<br>\n"; }
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.3.33, 7.4.0 - 7.4.25, 7.4.27 - 7.4.33, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
2020-05-18 12:00 - 2020-05-31 12:00<br> 2020-05-04 12:00 - 2020-05-17 12:00<br> 2020-04-20 12:00 - 2020-05-03 12:00<br> 2020-04-06 12:00 - 2020-04-19 12:00<br> 2020-03-23 11:00 - 2020-04-05 11:00<br> 2020-03-09 11:00 - 2020-03-22 11:00<br> 2020-02-24 11:00 - 2020-03-08 11:00<br> 2020-02-10 11:00 - 2020-02-23 11:00<br> 2020-01-27 11:00 - 2020-02-09 11:00<br> 2020-01-13 11:00 - 2020-01-26 11:00<br>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 2020-05-18 12:00 - 2020-05-31 12:00<br> 2020-05-04 12:00 - 2020-05-17 12:00<br> 2020-04-20 12:00 - 2020-05-03 12:00<br> 2020-04-06 12:00 - 2020-04-19 12:00<br> 2020-03-23 11:00 - 2020-04-05 11:00<br> 2020-03-09 11:00 - 2020-03-22 11:00<br> 2020-02-24 11:00 - 2020-03-08 11:00<br> 2020-02-10 11:00 - 2020-02-23 11:00<br> 2020-01-27 11:00 - 2020-02-09 11:00<br> 2020-01-13 11:00 - 2020-01-26 11:00<br>
Output for 7.3.32, 7.4.26, 8.0.13
2020-05-18 12:00 - 2020-05-31 12:00<br> 2020-05-04 12:00 - 2020-05-17 12:00<br> 2020-04-20 12:00 - 2020-05-03 12:00<br> 2020-04-06 12:00 - 2020-04-19 12:00<br> 2020-03-23 12:00 - 2020-04-05 12:00<br> 2020-03-09 12:00 - 2020-03-22 12:00<br> 2020-02-24 12:00 - 2020-03-08 12:00<br> 2020-02-10 12:00 - 2020-02-23 12:00<br> 2020-01-27 12:00 - 2020-02-09 12:00<br> 2020-01-13 12:00 - 2020-01-26 12:00<br>

preferences:
139.35 ms | 402 KiB | 182 Q