3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dateStr = "2022-02-31 00:00:00"; try { $dt = new \DateTime($dateStr); } catch (\Exception $e) { print "Invalid Date! ". $e->getMessage() ."\n"; } print "Valid date! ". $dt->format("Y-m-d H:i:s") ."\n"; var_dump($dt->getLastErrors());
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.28, 8.4.1 - 8.4.14, 8.5.0 - 8.5.1
Valid date! 2022-03-03 00:00:00 array(4) { ["warning_count"]=> int(1) ["warnings"]=> array(1) { [20]=> string(27) "The parsed date was invalid" } ["error_count"]=> int(0) ["errors"]=> array(0) { } }
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.

preferences:
146.51 ms | 407 KiB | 5 Q