3v4l.org

run code in 300+ PHP versions simultaneously
<?php date_default_timezone_set('America/New_York'); $date = new DateTime(); echo json_encode($date,JSON_FORCE_OBJECT); var_dump(json_last_error(), json_last_error_msg()); function isSerializable( $var ) { try { serialize( $var ); return TRUE; } catch( Exception $e ) { return FALSE; } } var_dump( isSerializable( DateTime() ) ); // bool(true)
Output for git.master
{"date":"2014-06-19 23:14:50.003683","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" Fatal error: Uncaught Error: Call to undefined function DateTime() in /in/DNE3O:20 Stack trace: #0 {main} thrown in /in/DNE3O on line 20
Process exited with code 255.
Output for git.master_jit
{"date":"2014-06-19 23:14:50.003746","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" Fatal error: Uncaught Error: Call to undefined function DateTime() in /in/DNE3O:20 Stack trace: #0 {main} thrown in /in/DNE3O on line 20
Process exited with code 255.
Output for rfc.property-hooks
{"date":"2014-06-19 23:14:50.003402","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" Fatal error: Uncaught Error: Call to undefined function DateTime() in /in/DNE3O:20 Stack trace: #0 {main} thrown in /in/DNE3O on line 20
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.28 ms | 401 KiB | 8 Q