3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = '2018-01-11T15:36:16.000+01:00'; $datetime = new \DateTimeImmutable($string); var_dump( $datetime->format(\DateTime::RFC3339_EXTENDED) === $string, \DateTimeImmutable::createFromFormat(\DateTime::RFC3339_EXTENDED, $string), \DateTimeImmutable::getLastErrors() );
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
bool(true) object(DateTimeImmutable)#2 (3) { ["date"]=> string(26) "2018-01-11 15:36:16.000000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "+01:00" } bool(false)
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 bool(true) object(DateTimeImmutable)#2 (3) { ["date"]=> string(26) "2018-01-11 15:36:16.000000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "+01:00" } bool(false)
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
bool(true) object(DateTimeImmutable)#2 (3) { ["date"]=> string(26) "2018-01-11 15:36:16.000000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "+01:00" } array(4) { ["warning_count"]=> int(0) ["warnings"]=> array(0) { } ["error_count"]=> int(0) ["errors"]=> array(0) { } }
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34
bool(true) bool(false) array(4) { ["warning_count"]=> int(0) ["warnings"]=> array(0) { } ["error_count"]=> int(2) ["errors"]=> array(2) { [20]=> string(35) "The format separator does not match" [21]=> string(47) "The timezone could not be found in the database" } }
Output for 5.6.0 - 5.6.40
Fatal error: Undefined class constant 'RFC3339_EXTENDED' in /in/N3UgG on line 7
Process exited with code 255.

preferences:
235.63 ms | 401 KiB | 298 Q