3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = ' [ { timestamp: 1509523044, tid: 83450451, price: "6381.0", amount: "1.0", type: "sell" }, { timestamp: 1509523044, tid: 83450448, price: "6380.0", amount: "1.12894377", type: "buy" } ]'; $json = json_decode(preg_replace('/(\w+):/', '"$1":', $str)); Echo $json[0]->price; Var_dump($json);
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 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
6381.0array(2) { [0]=> object(stdClass)#1 (5) { ["timestamp"]=> int(1509523044) ["tid"]=> int(83450451) ["price"]=> string(6) "6381.0" ["amount"]=> string(3) "1.0" ["type"]=> string(4) "sell" } [1]=> object(stdClass)#2 (5) { ["timestamp"]=> int(1509523044) ["tid"]=> int(83450448) ["price"]=> string(6) "6380.0" ["amount"]=> string(10) "1.12894377" ["type"]=> string(3) "buy" } }
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 6381.0array(2) { [0]=> object(stdClass)#1 (5) { ["timestamp"]=> int(1509523044) ["tid"]=> int(83450451) ["price"]=> string(6) "6381.0" ["amount"]=> string(3) "1.0" ["type"]=> string(4) "sell" } [1]=> object(stdClass)#2 (5) { ["timestamp"]=> int(1509523044) ["tid"]=> int(83450448) ["price"]=> string(6) "6380.0" ["amount"]=> string(10) "1.12894377" ["type"]=> string(3) "buy" } }

preferences:
167.72 ms | 403 KiB | 300 Q