3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data = <<<JSON { "api_json": [ { "api_id": 1, "api_no": 36, "api_name": "name", "api_val": [ 133, 424 ] }, { "api_id": 2, "api_no": 21, "api_name": "name2", "api_val": [ 213, 924 ] } ] } JSON; var_dump(json_decode($data));
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
object(stdClass)#3 (1) { ["api_json"]=> array(2) { [0]=> object(stdClass)#1 (4) { ["api_id"]=> int(1) ["api_no"]=> int(36) ["api_name"]=> string(4) "name" ["api_val"]=> array(2) { [0]=> int(133) [1]=> int(424) } } [1]=> object(stdClass)#2 (4) { ["api_id"]=> int(2) ["api_no"]=> int(21) ["api_name"]=> string(5) "name2" ["api_val"]=> array(2) { [0]=> int(213) [1]=> int(924) } } } }
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
object(stdClass)#1 (1) { ["api_json"]=> array(2) { [0]=> object(stdClass)#2 (4) { ["api_id"]=> int(1) ["api_no"]=> int(36) ["api_name"]=> string(4) "name" ["api_val"]=> array(2) { [0]=> int(133) [1]=> int(424) } } [1]=> object(stdClass)#3 (4) { ["api_id"]=> int(2) ["api_no"]=> int(21) ["api_name"]=> string(5) "name2" ["api_val"]=> array(2) { [0]=> int(213) [1]=> int(924) } } } }
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6
Fatal error: Call to undefined function json_decode() in /in/Wv161 on line 28
Process exited with code 255.
Output for 5.1.2
Fatal error: Call to undefined function json_decode() in /in/Wv161 on line 29
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: json_decode() in /in/Wv161 on line 28
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Fatal error: Call to undefined function: json_decode() in /in/Wv161 on line 28
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: json_decode() in /in/Wv161 on line 29
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: json_decode() in /in/Wv161 on line 28

preferences:
241 ms | 401 KiB | 312 Q