3v4l.org

run code in 300+ PHP versions simultaneously
<?php $time = time(); $format = "\\Fm\0 j, Y"; var_dump( $format ); var_dump( date( $format, $time ) ); $dt = new DateTime( '@' . $time ); var_dump( $dt->format( $format ) );
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.13, 7.3.0 - 7.3.1
string(9) "\Fm j, Y" string(12) "F03 5, 2014" string(12) "F03 5, 2014"
Output for 5.2.1 - 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(9) "\Fm j, Y" string(3) "F03" string(3) "F03"
Output for 5.2.0
string(9) "\Fm j, Y" string(11) "F03 5, 2014" string(11) "F03 5, 2014"
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
string(9) "\Fm j, Y" string(11) "F03 5, 2014" Fatal error: Class 'DateTime' not found in /in/RXMpd on line 7
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
string(9) "\Fm j, Y" string(11) "F03 5, 2014" Fatal error: Cannot instantiate non-existent class: datetime in /in/RXMpd on line 7
Process exited with code 255.
Output for 4.3.0 - 4.3.1
string(9) "\Fm j, Y" string(11) "F03 5, 2014" Fatal error: Cannot instantiate non-existent class: datetime in /in/RXMpd on line 7

preferences:
132.66 ms | 401 KiB | 232 Q