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($what['is_tall'])."<br><br>"; echo "is profile an array???<br>"; echo is_array($what['profile'])."<br><br>";
Output for git.master, git.master_jit, 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> Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /in/9XTEI:27 Stack trace: #0 {main} thrown in /in/9XTEI on line 27
Process exited with code 255.

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