3v4l.org

run code in 300+ PHP versions simultaneously
<?php // http://stackoverflow.com/questions/13128854/php-datetime-class-change-first-day-of-the-week-to-monday?rq=1 $test = new DateTime('2012-11-04'); // 2012-11-05 // I expect to get 2012-10-29 var_dump($test->modify('Monday this week')->format('Y-m-d')); setlocale(LC_ALL, 'nl_NL'); $test = new DateTime('2012-11-04'); // 2012-11-05 // I expect to get 2012-10-29 var_dump($test->modify('Monday this week')->format('Y-m-d'));
Output for 5.6.28, 7.0.20, 7.1.0 - 7.1.33, 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.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
string(10) "2012-10-29" string(10) "2012-10-29"
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.21, 7.0.0 - 7.0.6
string(10) "2012-11-05" string(10) "2012-11-05"

preferences:
148.84 ms | 402 KiB | 215 Q