I have JSON output encoded.
$responseJSON
{"status":1,"content":{"sessionid":"4c86cf1acac07811db6ec670e0b9cdd2"}}
now I do a decode on that
$decoded=json_decode($responseJSON);
print_r($decoded)
I get
stdClass Object (
[status] => 1
[content] => stdClass Object (
[sessionid] => 4c86cf1acac07811db6ec670e0b9cdd2
)
)
I don't want decoded like that.
how do I decode to an normal array without those stdClass tag?
stdClassis a special generic class used for objects not constructed from a normal class. These docs explain in a little more detail. – Matthew Flaschen Oct 10 '11 at 1:02