3v4l.org

run code in 300+ PHP versions simultaneously
<?php $time = mktime(23, 59, 59, 09, 06, 2013); $format1 = "%I:%M %p"; $format2 = "%I:%M %P"; assert(strftime($format1, $time) === '11:59 PM'); // as documented on php.net/strftime, %p => PM assert(strftime($format2, $time) === '11:59 pm'); // and %P => pm assert(strptime($format1, '11:59 PM') !== false); assert(strptime($format2, '11:59 pm') !== false); assert(strptime($format1, '11:59 pm') === false); assert(strptime($format2, '11:59 PM') === false);
Output for 5.1.0 - 5.1.6, 5.2.0 - 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
Warning: assert(): Assertion failed in /in/9sDWp on line 10 Warning: assert(): Assertion failed in /in/9sDWp on line 11
Output for 5.0.0 - 5.0.5
Fatal error: Call to undefined function strptime() in /in/9sDWp on line 10
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: strptime() in /in/9sDWp on line 10
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: strptime() in /in/9sDWp on line 10
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: strptime() in /in/9sDWp on line 10

preferences:
250.71 ms | 1395 KiB | 200 Q