I have the following JSON object:
[Object, Object, Object, Object, Object, Object, Object, Object, Object, Object]
0: Object
category: Object
0: "Value"
I was wondering how I could get 'Value' in a variable in PHP. I thought category[0] would just do it but I get the following instead of 'Value':
__proto__: Object
What should I do?