3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo{ public $data = array('foo'); } $foo = new Foo; $json = json_encode($foo); var_dump($foo, $json, json_decode($json), (array) $foo);
Output for git.master, git.master_jit, rfc.property-hooks
object(Foo)#1 (1) { ["data"]=> array(1) { [0]=> string(3) "foo" } } string(16) "{"data":["foo"]}" object(stdClass)#2 (1) { ["data"]=> array(1) { [0]=> string(3) "foo" } } array(1) { ["data"]=> array(1) { [0]=> string(3) "foo" } }

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:
33.24 ms | 402 KiB | 8 Q