I got an object's value in foreach loop which is a number
> array(12) { [0]=> object(stdClass)#34 (22) {
[201609]=> string(6) "130000"
} }
When I try to access $query->201609
getting error
Parse error: syntax error, unexpected T_LNUMBER, expecting T_STRING or T_VARIABLE or '{' or '$'
I try to access by using $query->{201609}
it gives me 0 value instead of 130000
How can I get that attribute?
This question is not duplicate. I've tried the other question's it doesn't help for me because it is in a loop.