An api is return an object with this structure,
[ABC] => stdClass Object
(
[@total] => 149.66667
)
This is result in print_r function, how to access total's value, i have tried
ABC->@total
ABC->total
ABC['total']
ABC['@total']
but nothing works.