3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dumpMappedRow($mappedRow) { var_dump([ 'created' => $mappedRow['created']->format(DateTime::ISO8601), 'modified' => $mappedRow['modified']->format(DateTime::ISO8601) ]); } $date = new DateTime(); $mappedRow['created'] = $date; $mappedRow['modified'] = $date; dumpMappedRow($mappedRow); $mappedRow['modified']->add(new DateInterval("1D")); dumpMappedRow($mappedRow);
Output for 8.3.0 - 8.3.6
array(2) { ["created"]=> string(24) "2015-09-24T21:14:04+0200" ["modified"]=> string(24) "2015-09-24T21:14:04+0200" } Fatal error: Uncaught DateMalformedIntervalStringException: Unknown or bad format (1D) in /in/9QRli:18 Stack trace: #0 /in/9QRli(18): DateInterval->__construct('1D') #1 {main} thrown in /in/9QRli on line 18
Process exited with code 255.
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
array(2) { ["created"]=> string(24) "2015-09-24T21:14:04+0200" ["modified"]=> string(24) "2015-09-24T21:14:04+0200" } Fatal error: Uncaught Exception: Unknown or bad format (1D) in /in/9QRli:18 Stack trace: #0 /in/9QRli(18): DateInterval->__construct('1D') #1 {main} thrown in /in/9QRli on line 18
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30
array(2) { ["created"]=> string(24) "2015-09-24T21:14:04+0200" ["modified"]=> string(24) "2015-09-24T21:14:04+0200" } Fatal error: Uncaught Exception: DateInterval::__construct(): Unknown or bad format (1D) in /in/9QRli:18 Stack trace: #0 /in/9QRli(18): DateInterval->__construct('1D') #1 {main} thrown in /in/9QRli on line 18
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 8.0.13
array(2) { ["created"]=> string(24) "2015-09-24T19:14:04+0000" ["modified"]=> string(24) "2015-09-24T19:14:04+0000" } Fatal error: Uncaught Exception: DateInterval::__construct(): Unknown or bad format (1D) in /in/9QRli:18 Stack trace: #0 /in/9QRli(18): DateInterval->__construct('1D') #1 {main} thrown in /in/9QRli on line 18
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
array(2) { ["created"]=> string(24) "2015-09-24T21:14:04+0200" ["modified"]=> string(24) "2015-09-24T21:14:04+0200" } Fatal error: Uncaught exception 'Exception' with message 'DateInterval::__construct(): Unknown or bad format (1D)' in /in/9QRli:18 Stack trace: #0 /in/9QRli(18): DateInterval->__construct('1D') #1 {main} thrown in /in/9QRli on line 18
Process exited with code 255.

preferences:
250.27 ms | 402 KiB | 302 Q