Needed help decoding the following curl response.
[{id:1, type:7, total: 246}, {id:1, type:7, total: 246}]
It is a complete string, not an array. Is there any possible way to decode and loop through every id.
Needed help decoding the following curl response.
[{id:1, type:7, total: 246}, {id:1, type:7, total: 246}]
It is a complete string, not an array. Is there any possible way to decode and loop through every id.
Try using json-decode.
The example from documentation:
<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));
?>
This will give you:
object(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}