3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '{"outfits": [{"1": [{"category_id": "women_jeans", "product_id": 464540467}, {"category_id": "women_tops", "product_id": 487351815}, {"category_id": "women_coats", "product_id": 493322686}, {"category_id": "women_bags", "product_id": 483902882}, {"category_id": "women_shoes", "product_id": 492772225}]}]}'; $outfits = json_decode($json); var_dump($outfits);
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 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.4, 8.3.6
object(stdClass)#7 (1) { ["outfits"]=> array(1) { [0]=> object(stdClass)#6 (1) { ["1"]=> array(5) { [0]=> object(stdClass)#1 (2) { ["category_id"]=> string(11) "women_jeans" ["product_id"]=> int(464540467) } [1]=> object(stdClass)#2 (2) { ["category_id"]=> string(10) "women_tops" ["product_id"]=> int(487351815) } [2]=> object(stdClass)#3 (2) { ["category_id"]=> string(11) "women_coats" ["product_id"]=> int(493322686) } [3]=> object(stdClass)#4 (2) { ["category_id"]=> string(10) "women_bags" ["product_id"]=> int(483902882) } [4]=> object(stdClass)#5 (2) { ["category_id"]=> string(11) "women_shoes" ["product_id"]=> int(492772225) } } } } }
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 object(stdClass)#7 (1) { ["outfits"]=> array(1) { [0]=> object(stdClass)#6 (1) { ["1"]=> array(5) { [0]=> object(stdClass)#1 (2) { ["category_id"]=> string(11) "women_jeans" ["product_id"]=> int(464540467) } [1]=> object(stdClass)#2 (2) { ["category_id"]=> string(10) "women_tops" ["product_id"]=> int(487351815) } [2]=> object(stdClass)#3 (2) { ["category_id"]=> string(11) "women_coats" ["product_id"]=> int(493322686) } [3]=> object(stdClass)#4 (2) { ["category_id"]=> string(10) "women_bags" ["product_id"]=> int(483902882) } [4]=> object(stdClass)#5 (2) { ["category_id"]=> string(11) "women_shoes" ["product_id"]=> int(492772225) } } } } }
Output for 5.5.0 - 5.5.35, 5.6.0 - 5.6.28
object(stdClass)#1 (1) { ["outfits"]=> array(1) { [0]=> object(stdClass)#2 (1) { ["1"]=> array(5) { [0]=> object(stdClass)#3 (2) { ["category_id"]=> string(11) "women_jeans" ["product_id"]=> int(464540467) } [1]=> object(stdClass)#4 (2) { ["category_id"]=> string(10) "women_tops" ["product_id"]=> int(487351815) } [2]=> object(stdClass)#5 (2) { ["category_id"]=> string(11) "women_coats" ["product_id"]=> int(493322686) } [3]=> object(stdClass)#6 (2) { ["category_id"]=> string(10) "women_bags" ["product_id"]=> int(483902882) } [4]=> object(stdClass)#7 (2) { ["category_id"]=> string(11) "women_shoes" ["product_id"]=> int(492772225) } } } } }

preferences:
192.38 ms | 404 KiB | 229 Q