> stdClass Object ( [id] => 2 [qty] => 10 ) [1] => stdClass Object save as variable code example
Example: how to retrieve value from stdclass array in php
foreach ($array as $obj)
{
// Here you can access to every object value in the way that you want
echo $obj->next_key_name;
}