3v4l.org

run code in 300+ PHP versions simultaneously
<?php $schema = <<<'HERE' { "properties": { "foo": {"$ref": "#"} }, "additionalProperties": false } HERE; $schema = json_decode($schema); // unset the ref unset($schema->properties->foo); // replace it with a closure that returns the schema when accessed. $schema->properties->foo = function () use ($schema) { return $schema; }; // If you find a closure, it's a lazy proxy. Execute it to get the value. $ref = $schema->properties->foo; $referencedValue = $ref(); // You would stop recursing if 1.) you run out of nested data or 2.) you reach the max depth. var_dump($referencedValue);
Output for git.master, git.master_jit, rfc.property-hooks
object(stdClass)#3 (2) { ["properties"]=> object(stdClass)#2 (1) { ["foo"]=> object(Closure)#1 (1) { ["static"]=> array(1) { ["schema"]=> *RECURSION* } } } ["additionalProperties"]=> 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:
50.59 ms | 402 KiB | 8 Q