3v4l.org

run code in 300+ PHP versions simultaneously
<?php $stuff = '{ "input": { "is_tall": [ "BOOLEAN", false ], "profile": { "fav_color": [ "STRING", true ], "sport": [ "STRING", true ] }, "awesome": "BOOLEAN" } }'; $what = json_decode($stuff); var_dump($what); echo "is is_tall an array???<br>"; echo is_array($input['is_tall'])."<br><br>"; echo "is profile an array???<br>"; echo is_array($input['profile'])."<br><br>";
Output for git.master, git.master_jit
object(stdClass)#3 (1) { ["input"]=> object(stdClass)#1 (3) { ["is_tall"]=> array(2) { [0]=> string(7) "BOOLEAN" [1]=> bool(false) } ["profile"]=> object(stdClass)#2 (2) { ["fav_color"]=> array(2) { [0]=> string(6) "STRING" [1]=> bool(true) } ["sport"]=> array(2) { [0]=> string(6) "STRING" [1]=> bool(true) } } ["awesome"]=> string(7) "BOOLEAN" } } is is_tall an array???<br> Warning: Undefined variable $input in /in/SMFWO on line 27 Warning: Trying to access array offset on value of type null in /in/SMFWO on line 27 <br><br>is profile an array???<br> Warning: Undefined variable $input in /in/SMFWO on line 30 Warning: Trying to access array offset on value of type null in /in/SMFWO on line 30 <br><br>
Output for rfc.property-hooks
object(stdClass)#3 (1) { ["input"]=> object(stdClass)#1 (3) { ["is_tall"]=> array(2) { [0]=> string(7) "BOOLEAN" [1]=> bool(false) } ["profile"]=> object(stdClass)#2 (2) { ["fav_color"]=> array(2) { [0]=> string(6) "STRING" [1]=> bool(true) } ["sport"]=> array(2) { [0]=> string(6) "STRING" [1]=> bool(true) } } ["awesome"]=> string(7) "BOOLEAN" } } is is_tall an array???<br> Warning: Undefined variable $input in /in/SMFWO on line 27 Warning: Trying to access array offset on null in /in/SMFWO on line 27 <br><br>is profile an array???<br> Warning: Undefined variable $input in /in/SMFWO on line 30 Warning: Trying to access array offset on null in /in/SMFWO on line 30 <br><br>

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