3v4l.org

run code in 300+ PHP versions simultaneously
<?php $format = 'd/m/Y'; foreach (range(1, 7) as $number) { $difference = strtotime('+' . $number . ' days'); $day = strtolower(date('N', $difference)); var_dump($day); $$day = $difference; } $todayName = date('N'); $$todayName = date($format); var_dump($monday); var_dump($tuesday); var_dump($wednesday); var_dump($thursday); var_dump($friday); var_dump($saturday); var_dump($sunday);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
string(1) "6" string(1) "7" string(1) "1" string(1) "2" string(1) "3" string(1) "4" string(1) "5" Warning: Undefined variable $monday in /in/RHBrV on line 15 NULL Warning: Undefined variable $tuesday in /in/RHBrV on line 16 NULL Warning: Undefined variable $wednesday in /in/RHBrV on line 17 NULL Warning: Undefined variable $thursday in /in/RHBrV on line 18 NULL Warning: Undefined variable $friday in /in/RHBrV on line 19 NULL Warning: Undefined variable $saturday in /in/RHBrV on line 20 NULL Warning: Undefined variable $sunday in /in/RHBrV on line 21 NULL
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
string(1) "6" string(1) "7" string(1) "1" string(1) "2" string(1) "3" string(1) "4" string(1) "5" Notice: Undefined variable: monday in /in/RHBrV on line 15 NULL Notice: Undefined variable: tuesday in /in/RHBrV on line 16 NULL Notice: Undefined variable: wednesday in /in/RHBrV on line 17 NULL Notice: Undefined variable: thursday in /in/RHBrV on line 18 NULL Notice: Undefined variable: friday in /in/RHBrV on line 19 NULL Notice: Undefined variable: saturday in /in/RHBrV on line 20 NULL Notice: Undefined variable: sunday in /in/RHBrV on line 21 NULL
Output for 7.3.32 - 7.3.33
string(1) "6" string(1) "7" string(1) "1" string(1) "2" string(1) "3" string(1) "4" string(1) "5" NULL NULL NULL NULL NULL NULL NULL
Output for 5.0.4 - 5.0.5
string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" Notice: Undefined variable: monday in /in/RHBrV on line 15 NULL Notice: Undefined variable: tuesday in /in/RHBrV on line 16 NULL Notice: Undefined variable: wednesday in /in/RHBrV on line 17 NULL Notice: Undefined variable: thursday in /in/RHBrV on line 18 NULL Notice: Undefined variable: friday in /in/RHBrV on line 19 NULL Notice: Undefined variable: saturday in /in/RHBrV on line 20 NULL Notice: Undefined variable: sunday in /in/RHBrV on line 21 NULL
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.3
string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" string(1) "n" Notice: Undefined variable: monday in /in/RHBrV on line 15 NULL Notice: Undefined variable: tuesday in /in/RHBrV on line 16 NULL Notice: Undefined variable: wednesday in /in/RHBrV on line 17 NULL Notice: Undefined variable: thursday in /in/RHBrV on line 18 NULL Notice: Undefined variable: friday in /in/RHBrV on line 19 NULL Notice: Undefined variable: saturday in /in/RHBrV on line 20 NULL Notice: Undefined variable: sunday in /in/RHBrV on line 21 NULL

preferences:
234.35 ms | 403 KiB | 351 Q