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->input->is_tall)."<br><br>"; echo "is profile an array???<br>"; echo is_array($what->input->profile)."<br><br>";

preferences:
43.86 ms | 402 KiB | 5 Q