3v4l.org

run code in 300+ PHP versions simultaneously
<?php $stuff = '{ "is_tall": [ "BOOLEAN", false ], "profile": { "fav_color": [ "STRING", true ], "sport": [ "STRING", true ] }, "awesome": "BOOLEAN" }'; $what = json_decode($stuff); //var_dump($what); echo is_object($what); die(); echo "is is_tall an array???\r\n"; echo is_array($what->input->is_tall)."\r\n\r\n"; echo "is profile an array???\r\n"; echo is_array($what->input->profile)."\r\n\r\n"; echo "is profile an object???\r\n"; echo is_object($what->input->profile)."\r\n\r\n";

preferences:
37.91 ms | 402 KiB | 5 Q