3v4l.org

run code in 300+ PHP versions simultaneously
<?php // fake facade / IoC // class app { public static function make() { return new MyJSON; } } class JSON { public function encode($object) { if (function_exists('json_encode')) { return json_encode($object); } return $this->shimJson(); } public function shimJson() { return 'derp'; } } /////////////////////// class MyJSON extends JSON { public function encode($object, $options = JSON_FORCE_OBJECT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) { return json_encode($object, $options); } } echo app::make('json')->encode(array('test'));
Output for git.master, git.master_jit, rfc.property-hooks
{"0":"test"}

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