3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '[ "foo", "bar", "info", { "data": "{\"parts\":[{\"id\":1,\"serial\":\"19777\",\"type\":\"NONE\",\"key\":\"\"}]}", "vendor": "Test", "message": "Hello world" } ]'; $arr = json_decode($json, true); recurse($arr); // find json elements inside $arr, and decode function recurse(array &$arr) { foreach ($arr as $key => &$value) { if (is_array($value)) { recurse($value); } else { if (is_object(json_decode($value))) { $value = json_decode($value, true); } } } } echo '<pre>'; print_r($arr); echo '</pre>';
Output for git.master, git.master_jit, rfc.property-hooks
<pre>Array ( [0] => foo [1] => bar [2] => info [3] => Array ( [data] => Array ( [parts] => Array ( [0] => Array ( [id] => 1 [serial] => 19777 [type] => NONE [key] => ) ) ) [vendor] => Test [message] => Hello world ) ) </pre>

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:
26.27 ms | 407 KiB | 5 Q