3v4l.org

run code in 300+ PHP versions simultaneously
<?php $getPrintReadyListResponse = '{ "printouts": [{ "order_id": 12345, "music_id": 10000, "arrangement": "Arrangement Type", "artist": :"Artist Name", "prints_remaining": 2, "title": "A Music Title" }, { "order_id": 12345, "music_id": 10002, "arrangement": "Another Arrangement", "artist": "Another Artist", "prints_remaining": 1, "title": "Another Music Title" }], "success": true }'; $obj = json_decode($getPrintReadyListResponse); //var_dump($obj); // dump what we got $s = $obj->success; foreach ( $obj->printouts as $o) { echo $o ; }; ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Attempt to read property "success" on null in /in/IG1Wh on line 25 Warning: Attempt to read property "printouts" on null in /in/IG1Wh on line 27 Warning: foreach() argument must be of type array|object, null given in /in/IG1Wh on line 27
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Trying to get property 'success' of non-object in /in/IG1Wh on line 25 Notice: Trying to get property 'printouts' of non-object in /in/IG1Wh on line 27 Warning: Invalid argument supplied for foreach() in /in/IG1Wh on line 27
Output for 7.3.32 - 7.3.33
Warning: Invalid argument supplied for foreach() in /in/IG1Wh on line 27
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Trying to get property of non-object in /in/IG1Wh on line 25 Notice: Trying to get property of non-object in /in/IG1Wh on line 27 Warning: Invalid argument supplied for foreach() in /in/IG1Wh on line 27

preferences:
305.26 ms | 403 KiB | 376 Q