How do I read this array?
stdClass Object (
[0] => stdClass Object (
[role_id] => 1
[username] => me@gmail.com
[date_time] => 2013-01-13 14:01:00
)
[status] => success
)
I can read the status as $objectname->status but I am not able to rwad $objectname->username.
That’s because
usernameis a property of$objectname->{"0"}, which is also an object.Try this:
Live example