3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getDay($day, $next) { $days = array('Monday' => 1, 'Tuesday' => 2, 'Wednesday' => 3, 'Thursday' => 4, 'Friday' => 5, 'Saturday' => 6, 'Sunday' => 7); $today = new DateTime(); $today->setISODate($today->format('o'), $today->format('W'), $next.' '.$days[ucfirst($day)]); return $today; } var_dump(getDay('Monday', '')->format('l dS F Y')); var_dump(getDay('Monday', 'next')->format('l dS F Y'));
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
string(22) "Monday 28th April 2014" Fatal error: Uncaught TypeError: DateTime::setISODate(): Argument #3 ($dayOfWeek) must be of type int, string given in /in/ZcYDj:7 Stack trace: #0 /in/ZcYDj(7): DateTime->setISODate('2014', '18', 'next 1') #1 /in/ZcYDj(12): getDay('Monday', 'next') #2 {main} thrown in /in/ZcYDj on line 7
Process exited with code 255.
Output for 7.3.12 - 7.3.33, 7.4.0 - 7.4.33
string(22) "Monday 28th April 2014" Warning: DateTime::setISODate() expects parameter 3 to be int, string given in /in/ZcYDj on line 7 string(22) "Saturday 03rd May 2014"
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33
string(22) "Monday 28th April 2014" Warning: DateTime::setISODate() expects parameter 3 to be integer, string given in /in/ZcYDj on line 7 string(22) "Saturday 03rd May 2014"
Output for 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
string(22) "Monday 28th April 2014" Warning: DateTime::setISODate() expects parameter 3 to be long, string given in /in/ZcYDj on line 7 string(22) "Saturday 03rd May 2014"
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTime' not found in /in/ZcYDj on line 6
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/ZcYDj on line 11
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/ZcYDj on line 11
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/ZcYDj on line 11
Process exited with code 255.

preferences:
216.97 ms | 401 KiB | 360 Q