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( array() ) ); // bool(true) var_dump( isSerializable( function() {} ) ); // bool(false) var_dump( isSerializable( array( function() {} ) ) );
Output for git.master
{"date":"2014-06-19 23:13:57.003669","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" bool(true) bool(false) bool(false)
Output for git.master_jit
{"date":"2014-06-19 23:13:57.003771","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" bool(true) bool(false) bool(false)
Output for rfc.property-hooks
{"date":"2014-06-19 23:13:57.003621","timezone_type":3,"timezone":"America\/New_York"}int(0) string(8) "No error" bool(true) bool(false) bool(false)

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:
51.15 ms | 401 KiB | 8 Q