I get the following output with json_decode
Array
(
[0] => Array
(
[...] => ...
[...] => ...
)
[1] => Array
(
[...] => ...
[...] => ...
)
What I want to do is import this to a class so I can call and reference the data from memory.
From research I found this: How to convert an array into an object using stdClass()
However, I am not sure if stdClass is the way I want to go?