Array ( [0] => stdClass Object ( [car_id] => 149 code example
Example 1: 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;
}
Example 2: php object(stdclass) to array
$array = json_decode(json_encode($object), true);